/* style.css */

/* --- CSS Variables --- */
:root {
    --primary-color: #0B3D91; /* Deep Blue */
    --secondary-color: #FFD700; /* Gold/Yellow */
    --accent-color: #FF4500; /* Orange-Red */
    --accent-color-darker: #CC3700; /* Darker Orange-Red for hover */

    --text-color: #333333; /* Dark Gray for body text */
    --text-color-light: #FFFFFF;
    --heading-color: #222222; /* Slightly darker for headings */
    --link-color: var(--primary-color);
    --link-hover-color: var(--accent-color);

    --background-color: #FFFFFF;
    --background-color-alt: #F5F5F5; /* Light Gray */
    --background-dark-overlay: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    --background-dark-section: #2c3e50; /* Dark Blue-Gray for contrast */

    --heading-font: 'Poppins', sans-serif;
    --body-font: 'Work Sans', sans-serif;

    --base-spacing: 1rem;
    --section-padding: 4rem 0; /* Natural height based on content */
    --container-max-width: 1140px;
    --border-radius: 6px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;

    --header-height: 80px;
}

/* --- Global Styles & Resets --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size */
}

body {
    font-family: var(--body-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.7;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    margin-bottom: calc(var(--base-spacing) * 1.5);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.8rem; /* Responsive */
}

h2 {
    font-size: 2.2rem; /* Responsive */
    text-align: center;
    margin-bottom: calc(var(--base-spacing) * 2.5);
}

h3 {
    font-size: 1.5rem; /* Responsive */
}

p {
    margin-bottom: var(--base-spacing);
    font-size: 1rem;
    font-weight: 400;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout: Container & Columns --- */
.container {
    width: 90%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--base-spacing);
    padding-right: var(--base-spacing);
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: calc(var(--base-spacing) * 2);
    align-items: center; /* Vertically align items in columns */
}

.column {
    flex: 1; /* Default: equal width */
    min-width: 280px; /* Prevent columns from becoming too narrow */
}

/* Simulate Bulma's 'is-two-thirds' */
.column.is-two-thirds {
    flex-grow: 2; /* Takes up roughly 2/3 space */
    flex-basis: 60%; /* Helps maintain ratio on wrap */
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: background-color var(--transition-speed) ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo:hover {
    color: var(--accent-color);
    text-decoration: none;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: calc(var(--base-spacing) * 1.8);
}

.main-navigation a {
    font-family: var(--body-font);
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.main-navigation a:hover,
.main-navigation a.active /* Add .active class via JS if needed */ {
    color: var(--accent-color);
    text-decoration: none;
}

.main-navigation a:hover::after {
    width: 100%;
}

.burger-menu-button {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1010;
}

.burger-menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all var(--transition-speed) ease;
}

/* Burger active state */
.burger-menu-button.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger-menu-button.active span:nth-child(2) {
    /*opacity: 0;*/
}
.burger-menu-button.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* --- Main Content Padding --- */
main {
    padding-top: var(--header-height); /* Offset content below fixed header */
}

/* --- Section Base Styles --- */
.content-section,
.features-section,
.projects-section,
.research-section,
.contact-section,
.external-resources-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden; /* Contain skewed elements/backgrounds */
}

/* Alternate Background */
.content-section:nth-child(odd):not(.hero-section),
.features-section,
.projects-section:nth-child(odd),
.external-resources-section {
    background-color: var(--background-color-alt);
}

/* Subtle Warped Grid Effect - Example on alternating sections */
.content-section:nth-child(even)::before,
.projects-section:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: inherit; /* Use section's background */
    transform: skewY(-1.5deg); /* Skew the background */
    z-index: -1; /* Behind content */
    transform-origin: left;
}

.content-section:nth-child(even) > .container,
.projects-section:nth-child(even) > .container {
     /* transform: skewY(1.5deg); Counter skew content if needed, often better to leave content straight */
     position: relative; /* Ensure content stays above skewed pseudo-element */
     z-index: 1;
}

.section-title {
    margin-bottom: var(--base-spacing); /* Tighter spacing for title/subtitle combo */
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-top: calc(var(--base-spacing) * -1); /* Pull subtitle closer to title */
    margin-bottom: calc(var(--base-spacing) * 3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 85vh; /* Use vh for hero height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    padding: 6rem 0; /* Adjust padding */
    color: var(--text-color-light); /* Ensure light text */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark-overlay); /* Use variable */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    color: var(--text-color-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    margin-bottom: var(--base-spacing);
}

.hero-content p {
    color: var(--text-color-light);
    font-size: 1.2rem;
    margin-bottom: calc(var(--base-spacing) * 2);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Buttons (Global) --- */
.cta-button,
button,
input[type="submit"],
input[type="button"] {
    display: inline-block;
    padding: calc(var(--base-spacing) * 0.8) calc(var(--base-spacing) * 2);
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color-light);
    background-color: var(--accent-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background-color var(--transition-speed) ease, transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--accent-color-darker);
    color: var(--text-color-light);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* --- History & Research Section (Text + Image) --- */
.text-content p:last-child {
    margin-bottom: 0;
}

.image-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    width: 100%; /* Ensure container takes column width */
}

.section-image {
   width: 100%; /* Make image fill container */
   height: auto; /* Maintain aspect ratio */
   object-fit: cover; /* Cover the container space */
   border-radius: var(--border-radius);
}

/* --- Features Section --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--base-spacing) * 2.5);
    margin-top: calc(var(--base-spacing) * 2);
}

.feature-card {
    background-color: var(--background-color);
    padding: calc(var(--base-spacing) * 2);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center icon and content */
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-card .card-image {
    margin-bottom: var(--base-spacing);
    height: 100px; /* Fixed height for icons */
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .card-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}


.feature-title {
    color: var(--primary-color);
    margin-bottom: calc(var(--base-spacing) * 0.8);
    font-size: 1.3rem;
}

/* --- Projects Section --- */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--base-spacing) * 2.5);
    margin-top: calc(var(--base-spacing) * 2);
}

.project-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden; /* Keep image within bounds */
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
    /* align-items: center; /* Center content block */
    text-align: left; /* Content aligns left */
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.project-card .card-image {
    height: 220px; /* Fixed height for project images */
    width: 100%;
    overflow: hidden;
    margin: 0; /* Remove default margin */
}

.project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.project-card .card-content {
    padding: calc(var(--base-spacing) * 1.5);
    flex-grow: 1; /* Allow content to fill space */
    display: flex;
    flex-direction: column;
}

.project-title {
    color: var(--primary-color);
    margin-bottom: calc(var(--base-spacing) * 0.8);
    font-size: 1.4rem;
}

.project-card p {
    flex-grow: 1; /* Push progress/button down */
    margin-bottom: var(--base-spacing);
}

.project-card label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #555;
    display: block;
    margin-bottom: calc(var(--base-spacing) * 0.3);
}

.progress-indicator {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: var(--base-spacing);
    appearance: none; /* Override default appearance */
    background-color: #e0e0e0; /* Background of the bar */
}

/* Style the progress bar value */
.progress-indicator::-webkit-progress-bar {
    background-color: #e0e0e0;
    border-radius: 5px;
}

.progress-indicator::-webkit-progress-value {
    background-color: var(--secondary-color); /* Use accent color for progress */
    border-radius: 5px;
    transition: width 0.5s ease;
}

.progress-indicator::-moz-progress-bar {
    background-color: var(--secondary-color);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.project-card .modal-trigger {
    align-self: flex-start; /* Align button left */
    margin-top: auto; /* Push to bottom */
    padding: calc(var(--base-spacing) * 0.6) calc(var(--base-spacing) * 1.2);
    font-size: 0.9rem;
}


/* --- Behind the Scenes Section --- */
#behind-the-scenes {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax */
    color: var(--text-color-light);
}

#behind-the-scenes .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 61, 145, 0.8); /* Semi-transparent primary color */
    z-index: 0;
}

#behind-the-scenes .relative-z {
    position: relative;
    z-index: 1;
}

#behind-the-scenes h2,
#behind-the-scenes p {
    color: var(--text-color-light);
}
#behind-the-scenes h2 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* --- External Resources Section --- */
.resources-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: calc(var(--base-spacing) * 2);
    margin-top: calc(var(--base-spacing) * 2);
}

.resource-item.card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: calc(var(--base-spacing) * 1.5);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    display: flex; /* Use flex for better alignment */
    flex-direction: column;
}

.resource-item.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.resource-title a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}
.resource-title a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}


.resource-description {
    font-size: 0.95rem;
    color: #555;
    margin-top: calc(var(--base-spacing) * 0.5);
    flex-grow: 1; /* Push link to bottom */
    margin-bottom: var(--base-spacing);
}

.resource-link {
    display: inline-block;
    margin-top: auto; /* Pushes to the bottom */
    font-weight: 500;
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
    align-self: flex-start; /* Align left */
}

.resource-link::after {
    content: ' →'; /* Add arrow */
}

.resource-link:hover {
    color: var(--accent-color-darker);
    text-decoration: underline;
}

/* --- Contact Section --- */
.contact-form {
    max-width: 700px;
    margin: calc(var(--base-spacing) * 2) auto 0;
    background-color: var(--background-color-alt);
    padding: calc(var(--base-spacing) * 2.5);
    border-radius: var(--border-radius);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: calc(var(--base-spacing) * 1.5);
}

.form-group label {
    display: block;
    margin-bottom: calc(var(--base-spacing) * 0.5);
    font-weight: 500;
    color: var(--heading-color);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: calc(var(--base-spacing) * 0.8);
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-button {
    width: 100%;
    padding: calc(var(--base-spacing) * 1);
    font-size: 1.1rem;
    margin-top: var(--base-spacing);
}


/* --- Modals --- */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease; /* Animate.css class can also be used via JS */
}

.modal-content {
    background-color: var(--background-color);
    margin: 10% auto; /* Centered vertically */
    padding: calc(var(--base-spacing) * 2.5);
    border-radius: var(--border-radius);
    max-width: 700px; /* Limit width */
    width: 85%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideInUp 0.4s ease; /* Animate.css class can also be used via JS */
}

.modal-content h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: var(--base-spacing);
    color: var(--primary-color);
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 300px; /* Limit image height */
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--base-spacing);
}


.close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-speed) ease;
}

.close-button:hover,
.close-button:focus {
    color: var(--accent-color);
    text-decoration: none;
}

/*@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }*/
/*@keyframes slideInUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }*/

/* --- Footer --- */
.site-footer {
    background-color: var(--heading-color); /* Dark background */
    color: #ccc; /* Light gray text */
    padding: calc(var(--base-spacing) * 3) 0 calc(var(--base-spacing) * 1.5);
    margin-top: calc(var(--base-spacing) * 3); /* Space above footer */
}

.footer-container {
    /* Container styles inherited */
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: calc(var(--base-spacing) * 2);
    margin-bottom: calc(var(--base-spacing) * 2);
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Ensure columns don't collapse too much */
}

.footer-column h4 {
    color: var(--secondary-color); /* Accent color for headings */
    margin-bottom: var(--base-spacing);
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: calc(var(--base-spacing) * 0.6);
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.footer-column a:hover {
    color: var(--text-color-light);
    text-decoration: underline;
}

.footer-column p {
    margin-bottom: calc(var(--base-spacing) * 0.5);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Social Links (Text only) */
.social-links {
    list-style: none;
    padding: 0;
}
.social-links li {
     margin-bottom: calc(var(--base-spacing) * 0.6);
}

.social-links a {
    color: #ccc; /* Same as other footer links */
    font-weight: 500; /* Slightly bolder */
    display: inline-block;
}
.social-links a:hover {
    color: var(--secondary-color); /* Highlight on hover */
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: calc(var(--base-spacing) * 2);
    padding-top: calc(var(--base-spacing) * 1.5);
    border-top: 1px solid #444; /* Separator line */
    font-size: 0.9rem;
    color: #aaa;
}

/* --- Scroll Animations Placeholder --- */
/* Add 'scroll-animate' class to sections in HTML */
/* JS (like GSAP ScrollTrigger) will add 'is-visible' when in view */
.scroll-animate {
    /*opacity: 0;*/
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Cookie Consent --- */
/* Styles are embedded in HTML for simplicity as requested */

/* --- Specific Page Styles --- */
/* Padding for static pages like privacy, terms */
.page-content-container { /* Add this class to main content div on static pages */
    padding-top: calc(var(--header-height) + var(--base-spacing) * 2);
    padding-bottom: calc(var(--base-spacing) * 3);
}

/* Styling for success.html */
.success-page-container { /* Add this class to main content div on success.html */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height)); /* Full height minus header */
    text-align: center;
    padding: calc(var(--base-spacing) * 2);
}

.success-page-container h1 {
    color: var(--primary-color);
    margin-bottom: var(--base-spacing);
}
.success-page-container p {
    font-size: 1.1rem;
    margin-bottom: calc(var(--base-spacing)*2);
}

/* --- Responsive Design --- */

/* Tablets and smaller desktops */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-section { min-height: 70vh; }
    .column.is-two-thirds { flex-basis: 100%; order: 1; } /* Stack text content first typically */
    .column.image-column { flex-basis: 100%; order: 2; margin-top: var(--base-spacing); }
    .columns { flex-direction: column; } /* Ensure stacking in history/research */
}

/* Mobile devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 3rem 0;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .hero-section { min-height: 60vh; background-attachment: scroll; } /* Disable parallax on mobile */
    .hero-content p { font-size: 1rem; }

    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%; /* Start off-screen */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--background-color);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding-top: calc(var(--header-height) + var(--base-spacing));
        transition: left var(--transition-speed) ease;
        z-index: 1005; /* Below burger button */
        overflow-y: auto;
    }

    .main-navigation.active {
        left: 0; /* Slide in */
    }

    .main-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: var(--base-spacing);
        padding: var(--base-spacing);
    }

    .main-navigation a {
        font-size: 1.1rem;
        padding: var(--base-spacing) 0;
    }

    .burger-menu-button {
        display: block;
    }

    .features-grid, .projects-grid, .resources-list {
        grid-template-columns: 1fr; /* Stack cards */
        gap: calc(var(--base-spacing) * 1.5);
    }

    .contact-form {
        padding: calc(var(--base-spacing) * 1.5);
        width: 100%;
    }

    .footer-columns {
        flex-direction: column;
        gap: calc(var(--base-spacing) * 1.5);
        text-align: center;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: var(--base-spacing);
    }

    .modal-content {
        width: 90%;
        margin: 15% auto;
        padding: var(--base-spacing) * 1.5;
    }
}