body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000000;
    color: white;
} /* end of body, html */




.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 888;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(20, 20, 20, 0.98));
    overflow-x: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding-top: 120px;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
} /* end of sidebar */

.sidebar a {
    padding: 12px 15px 12px 25px;
    text-decoration: none;
    font-size: 22px;
    color: #999;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-20px);
}

.sidebar.open a {
    opacity: 1;
    transform: translateX(0);
}

.sidebar a:nth-child(1) { transition-delay: 0.1s; }
.sidebar a:nth-child(2) { transition-delay: 0.15s; }
.sidebar a:nth-child(3) { transition-delay: 0.2s; }
.sidebar a:nth-child(4) { transition-delay: 0.25s; }

.sidebar-section {
    transition-delay: 0.3s;
}

/* end of sidebar a */

.sidebar a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #53acd3;
    padding-left: 30px;
} /* end of sidebar a:hover */

.sidebar::after {
    content: none;
} /* end of sidebar::after */

.sidebar-section {
    margin-bottom: 20vh;
    position: relative;
} /* end of sidebar section */

.sidebar-section > a {
    font-weight: 600;
    color: #aaa;
    position: relative;
}

.sidebar-section > a::after {
    content: '▼';
    position: absolute;
    right: 20px;
    font-size: 12px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.sidebar.open .sidebar-section > a::after {
    opacity: 1;
}

.sidebar-section:hover > a::after {
    transform: translateY(2px);
}

.sidebar-subpages {
    margin-left: 10%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.sidebar.open .sidebar-subpages {
    max-height: 500px;
    opacity: 1;
    transition-delay: 0.35s;
}

.sidebar-subpages a {
    font-size: 18px;
    padding: 10px 15px 10px 35px;
    color: #777;
}




.main-content {
    transition: margin-left .5s;
    padding: 20px;
} /* end of main content */

.content {
    position: relative;
    z-index: 2;
} /* end of content */




.open-btn {
    position: fixed;
    top: 40px;
    left: 30px;
    z-index: 999;
    background-color: transparent;
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 50px;
    width: 50px;
    transition: transform 0.5s ease;
} /* end of open-btn */

.open-btn span {
    display: block;
    height: 3px;
    background-color: white;
    width: 30px;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform-origin: 50% 50%;
} /* end of open-btn span */

.open-btn.toggle span:nth-child(1),
.open-btn.toggle span:nth-child(2) {
    position: absolute;
    width: 70%;
} /* end of open-btn span (both children (each line)) */

.open-btn.toggle span:nth-child(1) {
    transform: rotate(45deg);
} /* end of open-btn span (child1) */

.open-btn.toggle span:nth-child(2) {
    transform: rotate(-45deg);
} /* end of open-btn span (child2) */




.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    margin: 0;
    z-index: 12;
} /* end of logo container */

.logo {
    max-width: 150px;
    max-height: 120px;
    height: auto;
    width: auto;
} /* end of logo */



.text {
    /* padding-left: 5%; */
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55, #D368D5);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    display: block;
    margin-bottom: 20px;
    z-index: 10;
    animation: gradientShift 8s linear infinite;
} /* end of text */

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

/* Portfolio Button Styles */
.portfolio-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    animation: gradientShift 8s linear infinite;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
}

.portfolio-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 132, 255, 0.5);
    animation: gradientShift 3s linear infinite;
}

/* Watch Film/Series Button Styles (Pink/Orange Gradient) */
.watch-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #D368D5, #D38953, #D368D5);
    background-size: 200% 100%;
    animation: gradientShift 8s linear infinite;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 104, 213, 0.3);
}

.watch-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(211, 104, 213, 0.5);
    animation: gradientShift 3s linear infinite;
}

/* Animated Poster Glow Effects */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 132, 255, 0.4),
            0 0 40px rgba(0, 132, 255, 0.3),
            0 0 60px rgba(0, 132, 255, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 132, 255, 0.6),
            0 0 60px rgba(0, 132, 255, 0.5),
            0 0 90px rgba(0, 132, 255, 0.3);
    }
}

@keyframes glowSweep {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(0, 132, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(0, 132, 255, 0.6));
    }
}

@keyframes pinkOrangeGlowSweep {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(211, 104, 213, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(211, 104, 213, 0.6));
    }
}

.portfolio-poster-glow {
    max-width: 400px;
    width: 90%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(0, 132, 255, 0.3);
    animation: glowSweep 6s ease-in-out infinite;
}

.film-poster-glow {
    border: 2px solid rgba(211, 104, 213, 0.3);
    animation: pinkOrangeGlowSweep 4s ease-in-out infinite;
}

.text-box-about {
    z-index: 9;
    padding: 10px;
    padding-right: -5%;
    background-color: rgba(0,0,0,0.75);
} /* end of text */

.text-link {
    color: #D26F55;
} /* end of text-link (for links in text)*/

.homepage-title {
    text-decoration: none;
} /* end of homepage-title (controls film titles on the homepage) */

.title-ASG {
    text-align: left;
    padding-top: 5%;
    padding-bottom: 0.5%;
    font-size: 3.5em;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0;
    margin-left: 10%;
    margin-right: 40%;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
    color: white;
}

.description-ASG {
    font-size: 1.5em;
    text-align: left;
    color: #FFFFFF;
    margin-left: 10%;
    margin-right: 40%;

}

.ASG-portfolio-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50vh; /* Full viewport height */
    position: relative;
    overflow: hidden; /* Prevents content from spilling out */
    padding-bottom: 5%;
}

.ASG-portfolio-container img {
    width: 55%; /* Make the image take up more space */
    height: 100%;
    object-fit: cover;
    margin-left: auto; /* Push image to the right */
    margin-right: 5%;
}

.text-overlay {
    position: absolute;
    top: 50%;
    left: 5%; /* Align the text towards the left */
    transform: translateY(-50%);
    width: 55%; /* Control the width of the text area */
    text-align: left;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Optional semi-transparent background */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.title-ASG {
    text-align: left;
    padding: 0; /* Simplified padding for overlay */
    font-size: 3.5em;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    text-transform: uppercase;
    font-weight: bold;
    margin: 0 0 0.5em 0; /* Adjusted margin for spacing within overlay */
    text-decoration: none;
    animation: gradientShift 8s linear infinite;
}

.description-ASG {
    font-size: 1.5em;
    text-align: left;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0; /* Reset margins to fit the overlay */
    line-height: 1.6;
    animation: gradientShift 8s linear infinite;
}

.header-p-ASG {
    font-size: 2em;
    padding-top: 2%;
    text-align: left;
    color: transparent;
    background: linear-gradient(45deg, #0091ff, #96f5f5, #0091ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    margin-left: 1%; /* Reset margins to fit the overlay */
    animation: gradientShift 8s linear infinite;
}

.project-description-ASG {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 1em;
    text-align: left;
    display: block;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0; /* Reset margins to fit the overlay */
    line-height: 1.6;
    z-index: 10;
    animation: gradientShift 8s linear infinite;
}

.project-problem-statement {
    padding-left: 25%;
    padding-right: 20%;
    align-items: center;
    font-weight: bold;
    font-size: 2em;
    max-width: 50%;
    text-align: justify;
    align-self: center;
    display: block;
    color: #FFFFFF;
    margin: 0; /* Reset margins to fit the overlay */
    line-height: 1.6;
    z-index: 10;
}


.project-header-ASG {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    display: block;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    margin: 0; /* Reset margins to fit the overlay */
    line-height: 1.6;
    z-index: 10;
    animation: gradientShift 8s linear infinite;
}

.project-par-ASG {
    padding-left: 5%;
    padding-right: 5%;
    font-size: 0.5em;
    text-align: left;
    display: block;
    color: #FFFFFF;
    margin: 0; /* Reset margins to fit the overlay */
    line-height: 1.6;
    z-index: 10;
}

.film-gallery-portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    padding: 20px;
} /* end of film gallery (for film page) */

.video-container {
    position: relative;
    max-width: 100%;
    width: 100vw;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    object-fit: cover;
} /* end of video-container */

.homepage-video {
    max-width: 100%;
} /* end of homepage-video */

.about-image {
    width: 100%;
    height: auto;
} /* end of about-image (for image on aboutme page */




.photo-gallery {
    box-sizing: border-box; /* Include padding and borders in the width calculation */
    margin: 0; /* No outer margins to keep layout tight */
    padding: 0; /* Padding handled via Masonry gutter */
}

/* Masonry sizing */
.grid-sizer,
.photo-container {
    width: calc((100% - 40px) / 3); /* 3 cols with 20px gutter between */
}

.photo-container {
    margin-bottom: 20px; /* Vertical gap to match Masonry gutter */
}

.gallery-image {
    width: 100%; /* Fill item width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove inline-gap */
}

.photo-gallery, .photo-container {
    box-sizing: border-box; /* Include padding and borders in the width calculation */
}



.film-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 100%;
} /* end of film gallery (for film page) */

/* Tight variant to align grid with standard text margins/padding */
.film-gallery--tight {
    padding-left: 5%; /* match .text padding */
    padding-right: 5%;
}

.section {
    margin-bottom: 30px;
} /* end of section (for film page) */

.container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
    box-sizing: border-box;
} /* end of container */

.container:hover {
    transform: scale(1.1); /* Enlarge the container */
    z-index: 10; /* Ensure it's above other content */
}

.container:hover .preview {
    display: block;
    opacity: 1; /* Show the preview on hover */
}

.container:hover .image {
    opacity: 0; /* Hide the original image */
}

.container:hover .middle {
    opacity: 1;
} /* end of container:hover .middle (for hover on containers on film page*/

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    transition: .5s ease;
} /* end of image */

.middle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: .5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
} /* end of middle (for the containers on the film page */

.video-project{
    text-align: center;
}

.figma-embeds {
    text-align: center;
}

.movie_title {
    margin-top: 5%;
    padding-left: 10%;
    max-width: 80%;
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: left;
    display: block;
    margin-bottom: 5%;
    font-size: x-large;
} /* end of movie-title for film containers */

.movie-text {
    padding-left: 10%;
    max-width: 80%;
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    display: block;
    margin-bottom: 5%;
} /* end of text */


.hidden {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
} /* end of hidden */

.visible {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
} /* end of visible */

.image, .preview {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
} /* end of .image */

.preview {
    position: absolute;
    top: 0;
    left: 0;
    display: none; /* Hidden by default */
    opacity: 0;
} /* end of preview */


.contact-form-container {
    justify-content: center;
}




.ASG-video-container {
    position: relative;
    max-width: 100%;
    width: 100vw;
    height: 50%;
    overflow: hidden;
    display: auto;
    justify-content: center;
    margin-top: 50px;
    object-fit: cover;
} /* end of video-container */


.ASG-text-container {
    padding-top: 40vh;
    position: relative;
    align-self: center;
    z-index: 10;
    color: white;
    width: 90vw;
} /* end of title container */


.ASG-text {
    /* padding-left: 50px; */
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    display: block;
    margin-bottom: auto;
    z-index: 10;
    animation: gradientShift 8s linear infinite;
} /* end of text */

.ASG-text-about {
    padding-left: 50px;
    align-self: center;
    font-size: 1.5em;
    align-items: left;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Arial, Helvetica, sans-serif;
    animation: gradientShift 8s linear infinite;
    text-align: left;
    display: block;
    z-index: 10;
} /* end of text */



.button-container {
    text-align: center;  /* Centers the buttons */
    padding: 20px;  /* Adds space around the buttons */
} /* end of button container */

.button-container button {
    font-family: Arial, Helvetica, sans-serif;
    margin: 10px;  /* Space between buttons */
    padding: 10px 20px;  /* Padding inside buttons */
    font-size: 16px;  /* Text size inside buttons */
    color: white;  /* Text color */
    background-color: rgb(75, 189, 255);  /* Background color */
    border: 1px;  /* No border */
    border-radius: 5px;  /* Rounded corners */
    cursor: pointer;  /* Pointer cursor on hover */
    transition: background-color 0.3s;  /* Smooth transition for background color */
} /* end of button container button specific */

.button-container button:hover {
    background-color: #353535;  /* Darker blue when hovered */
} /* end of button container hover */

.game {
    justify-content: center;
    align-items: center;
    max-width: 100%;
    max-height: 100vh;
}

@media (min-width: 768px) {
    .middle {
        padding-left: 5%;
    } /* middle for smaller screens */

    .sidebar-section {
        margin-bottom: 20vh
    }

    .video-container {
        display: auto
    }
} 

@media (min-width: 1024px) {
    .film-gallery {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .sidebar-section {
        margin-bottom: 20vh
    }

    .video-container {
        display: auto
    }
}

@media (min-width: 1440px) {
    .film-gallery {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
    
    .sidebar-section {
        margin-bottom: 20vh
    }

    .video-container {
        display: auto
    }
}

/* Responsive adjustments for Masonry column counts */
@media (max-width: 767px) { /* Mobile */
    .grid-sizer,
    .photo-container { width: 100%; }
}

@media (min-width: 768px) and (max-width: 1023px) { /* Tablet */
    .grid-sizer,
    .photo-container { width: calc((100% - 20px) / 2); } /* 2 cols, one 20px gutter */
}

@media (min-width: 1024px) { /* Desktop and up */
    .grid-sizer,
    .photo-container { width: calc((100% - 40px) / 3); } /* 3 cols, two 20px gutters */
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Make gallery images clickable */
.gallery-image {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.gallery-image:hover {
    opacity: 0.8;
}

/* Upcoming films section - larger containers and better text layout */
.upcoming .container {
    min-height: 500px; /* Make containers even taller */
}

.upcoming .text-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    padding: 15px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.upcoming .movie_title {
    font-size: 1.6em;
    margin-bottom: 15px;
    line-height: 1.2;
}

.upcoming .movie-text {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* Side-by-side layout for crew information */
.upcoming .crew-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 8px 0;
    justify-content: center;
    align-items: center;
}

.upcoming .crew-item {
    flex: 1;
    min-width: 120px;
    font-size: 0.95em;
    line-height: 1.3;
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 4px;
}

/* Role and person styling for better distinction */
.role {
    font-weight: bold;
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    -webkit-background-clip: text;
    background-clip: text;
}

.person {
    font-weight: normal;
    color: transparent;
    background: linear-gradient(45deg, #D368D5, #D38953, #D26F55);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Loading Screen Styles */
.loading-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    color: white;
    font-size: 1.2em;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #333;
    border-top: 4px solid #0084ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-screen p {
    margin: 0;
    color: transparent;
    background: linear-gradient(45deg, #0084ff, #53acd3, #96f5f5, #0084ff);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 8s linear infinite;
}


/* Responsive Adjustments for First Stylesheet */
@media (max-width: 768px) {

    .main-content {
        padding: 10px;
    }

    .title {
        font-size: 2.5em;
    }

    .project-problem-statement {
        font-size: 1em;
    }

    .project-header-ASG {
        font-size: 2em;

    }

    .figma-embeds {
        width: 90%; /* Reduce width to fit smaller screens */
        height: auto;
        margin: 0 auto; /* Center horizontally */
    }

    .video-project {
        max-width: 80vw;
        text-align: center;
        height: auto;
        display: block;
        margin: 0 0; /* Center horizontally */
    }

    .video-project iframe {
        width: 50%;
        height: auto;
    }

    .figma-embeds iframe {
        width: 100%; /* Ensure iframe scales with the container */
        height: auto; /* Maintain aspect ratio */
    }
    
}

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: auto;
    border-top: 1px solid #333;
  }
  
  .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .copyright {
    font-size: 0.9rem;
    color: #999;
    margin: 0;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .social-links a {
    color: #999;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
  }
  
  .social-links svg {
    width: 24px;
    height: 24px;
  }
  
  /* Responsive Design */
  @media (max-width: 640px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 1.5rem;
    }
    
    .copyright {
      order: 2;
    }
    
    .social-links {
      order: 1;
    }

    .header-p-ASG {
        position: fixed
    }

    main {
        margin-top: 0;
        position: relative;
        z-index: 1;
      }
    
    header {
        background: rgba(255, 255, 255, 0.6); /* optional */
        backdrop-filter: blur(6px); /* optional aesthetic */
    }

  }
  

@media (min-width: 768px) and (max-width: 1024px) {

    .title {
        font-size: 3em;
    }
}

@media (min-width: 1024px) {

    .main-content {
        padding: 30px;
    }

    .title {
        font-size: 4em;
    }

    .ASG-text-about {
        padding-left: 10%;
        padding-right: 10%;
    }

}

@media (min-width: 2560px) {

    .main-content {
        padding: 30px;
    }

    .title {
        font-size: 4em;
    }

    .ASG-text-about {
        padding-top: 3%;
        padding-left: 30%;
        padding-right: 30%;
    }
}

/* end of media queries */




