:root {
    /* Colors - Main Palette */
    --color-blue: #213963;
    --color-accent: #9b2518;
    
    /* Extended Color Palette */
    --color-blue-light: #2d4a7a;
    --color-blue-dark: #172b48;
    --color-blue-soft: #3a5e8f;
    --color-accent-light: #b53a2a;
    --color-accent-dark: #7a1d13;
    --color-accent-soft: #c14e3e;
    --color-gold: #c4a747;
    --color-cream: #f5f0e6;
    --color-gray-light: #f8f9fa;
    --color-gray: #6c757d;
    --color-dark: #1e2a3a;
    
    /* Fonts */
    --font-head: "Cormorant Garamond", serif;
    --font-body: "Josefin Sans", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-head);
    background-color: var(--color-cream);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
    padding: 0.5rem 2rem;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.navbar.menu-open {
    background: transparent;
    box-shadow: none;
}

.navbar.visible {
    transform: translateY(0);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left & Right Links */
.nav-left, .nav-right {
    display: flex;
    gap: 4rem;
    margin-top: -1rem;
}

.nav-link {
    color: var(--color-cream);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1.3rem;
}

.nav-link:hover {
    color: var(--color-accent-light);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-light);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Brand */
.brand {
    text-align: center;
    line-height: 1.3;
}

.events-by {
    display: block;
    font-size: 1rem;
    font-family: "Niva-Bold";
    letter-spacing: 3px;
    color: var(--color-accent-soft);
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.house-of-yugo {
    display: block;
    font-size: 2rem;
    font-family: "MrAlex-Bold";
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hamburger (2 lines to perfect X) */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1100;
    position: relative;
    width: 35px;
    height: 35px;
}

.line {
    display: block;
    position: absolute;
    width: 35px;
    height: 1.5px;
    background-color: var(--color-cream);
    transition: all 0.3s ease;
    left: 5px;
}

.line:first-child {
    top: 18px;
}

.line:last-child {
    top: 29px;
}

.hamburger.active .line:first-child {
    top: 16px;
    transform: rotate(45deg);
}

.hamburger.active .line:last-child {
    top: 16px;
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.7s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
}

.mobile-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(33, 57, 99, 0.9), rgba(0, 0, 0, 0.85)), url('/images/menu-bg.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.mobile-links {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
    z-index: 1001;
    margin-top: 2rem;
}

.mobile-link {
    color: white;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.mobile-link:hover {
    color: var(--color-gold);
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .brand {
        text-align: left;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .events-by {
        font-size: 1rem;
    }
    
    .house-of-yugo {
        font-size: 2rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('https://images.squarespace-cdn.com/content/v1/61956e0ecf51420b77c68474/9c605fb8-19f7-4931-9b8a-b3e236332f6e/1-Calder-Clark-Wedding-Planner-Dulcie%2BNelson-Montana-Destination-Event-Design.jpg?format=2500w');
    background-size: cover;
    background-position: center 50%;
    /* background-attachment: fixed; */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 450px;
    margin-bottom: auto;
    margin-top: auto;
}

.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
}

.hero-bottom p {
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1px;
    line-height: 1.5;
    font-weight: bold;
    text-transform: uppercase;
}

.bouncing-arrow {
    display: inline-block;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.bouncing-arrow i {
    color: white;
    font-size: 30px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .hero-overlay{
        margin-top: -15%;
    }

    .hero-logo {
        width: 300px;
    }
    
    .hero-bottom p {
        font-size: 0.9rem;
    }
}

/* Features Section */
.features {
    padding: 5rem 10rem;
    overflow-x: hidden;
    display: flex;
}

.features-container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.features-left h2 {
    font-size: 1.8rem;
    color: var(--color-gray);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.logo-grid {
    display: flex;
    gap: 3rem;
    justify-content: flex-start;
    align-items: center;
}

.feature-logo {
    width: 300px;
    height: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: grayscale(100%) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-logo:hover {
    filter: grayscale(0%) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {

    .features{
        padding: 3rem;
    }

    .features-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .logo-grid {
        justify-content: center;
    }
    
    .features-left h2 {
        font-size: 1.5rem;
        min-width: 90vw;
    }
    
    .feature-logo {
        width: 150px;
    }
}

/* About Section */
.about-container {
    display: flex;
    margin: 0 auto;
    gap: 0;
}

/* Left Side - Image Area */
.about-image-area {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/stripes.png');
    background-size: cover;
    background-position: center;
}

.about-foreground-img {
    position: relative;
    width: 65%;
    height: 80vh;
    display: block;
    margin: 5% auto;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Right Side - Blue BG */
.about-content {
    flex: 1;
    background-color: var(--color-blue);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 50%;
    text-align: center;
}

.about-small {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    font-weight: bold;
    font-family: var(--font-body);
}

.about-big {
    font-size: 3.2rem;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.about-medium {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-bottom: 5rem;
    width: 80%;
}

/* Reusable CTA Button */
.cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-align: center;
    width: fit-content;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.cta-btn:hover {
    background-color: white;
    color: var(--color-blue);
}

/* Mobile */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image-area {
        min-height: 400px;
    }
    
    .about-foreground-img {
        width: auto;
        margin: 15% auto;
        height: 45vh;
    }
    
    .about-content {
        padding: 5rem 0;
        text-align: center;
        max-width: none;
    }

    .about-small{
        line-height: 1.5;
        font-size: 0.9rem;
        width: 80vw;
    }
    
    .about-big {
        font-size: 2.5rem;
        width: 95vw;
    }

    .about-medium{
        width: 90vw;
        font-size: 1rem;
    }
    
    .cta-btn {
        margin: 0 auto;
    }
}

/* Welcome Section */
.welcome {
    height: 130vh;
    width: 100%;
    position: relative;
    background-image: url('https://images.squarespace-cdn.com/content/v1/61956e0ecf51420b77c68474/1ccc2853-61c9-4818-9022-04d06a4b7421/Full-Service-Best-Wedding-Planner-East-Coast-Vogue-16.jpg?format=2500w');
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
}

.welcome-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.welcome-content {
    padding: 2rem;
}

.welcome-heading {
    font-size: 4rem;
    color: white;
    margin-bottom: 5rem;
}

.welcome-text {
    font-size: 2.4rem;
    line-height: 1.3;
    color: white;
    margin-bottom: 1.8rem;
    width: 60vw;
}

.welcome-text u {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
    text-decoration-color: white;
}

.welcome-btn {
    border-color: transparent;
    background-color: var(--color-blue);
    color: white;
    margin-top: 8rem;
}

.welcome-btn:hover {
    background-color: var(--color-accent);
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .welcome-heading {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: 3rem;
    }
    
    .welcome-text {
        font-size: 1.5rem;
        width: 95vw;
    }
}

/* Mission Section */
.mission-section {
    position: relative;
    width: 100%;
}

.mission-top {
    background-color: var(--color-blue);
    min-height: 150vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5%;
    margin-bottom: 4rem;
    min-width: 100%;
    margin-top: 2rem;
    overflow-x: hidden;
}

.portrait-img {
    width: 25%;
    height: 70vh;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.landscape-img {
    width: 48%;
    height: 70vh;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-writeup {
    text-align: center;
    max-width: 1000px;
    margin-top: 4rem;
}

.mission-writeup p {
    font-size: 3rem;
    color: white;
}

.mission-bottom {
    background-image: url('/images/stripes.png');
    background-size: cover;
    background-position: center;
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 90vw;
    margin: 0 auto;
    flex-wrap: wrap;
    transform: translateY(-50%);
    width: 100%;
    margin-top: -10%;
}

.mission-card {
    background: white;
    border-radius: 0;
    padding: 0 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s ease;
    height: 45vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.card-title {
    font-size: 3rem;
    color: var(--color-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    font-style: italic;
}

.card-subtitle {
    font-size: 1.2rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.mission-cta {
    margin-top: -8rem;
    text-align: center;
}

.mission-btn {
    border-color: transparent;
    color: var(--color-cream);
    background-color: var(--color-accent);
}

.mission-btn:hover {
    background-color: var(--color-blue);
    color: white;
}

/* Mobile */
@media (max-width: 768px) {

    .image-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 0;
    }
    
    .portrait-img, .landscape-img {
        width: 80%;
        height: auto;
    }
    
    .cards-container {
        transform: translateY(0);
        gap: 2rem;
        margin-top: -15rem;
    }
    
    .mission-top {
        min-height: auto;
        padding-bottom: 2rem;
    }
    
    .mission-bottom {
        min-height: auto;
    }
    
    .mission-writeup p {
        font-size: 1.8rem;
        width: 90vw;
        margin-bottom: 15rem;
    }

    .mission-card {
        min-width: 95vw;
    }

    .card-title{
        font-size: 2rem;
    }

    .card-subtitle{
        font-size: 1rem;
    }

    .card-text{
        font-size: 1rem;
    }
    
    .mission-cta {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

/* Testimonial Section */
.testimonial-section {
    background-color: var(--color-blue);
    padding: 5rem 2rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.testimonial-container {
    max-width: 80vw;
    margin: 0 auto;
    width: 100%;
    margin-top: 10rem;
}

/* Slider */
.testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease-out;
    cursor: grab;
}

.testimonial-track:active {
    cursor: grabbing;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

/* Left Image */
.testimonial-image {
    flex: 1;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Right Card */
.testimonial-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-left: -10%;
    z-index: 9999;
}

.testimonial-title {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    font-weight: 500;
}

.testimonial-quote {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-client {
    border-top: 2px solid var(--color-accent);
    padding-top: 1rem;
}

.client-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.25rem;
}

.client-event {
    font-size: 1.25rem;
    color: #666;
}

/* Navigation Arrows - Centered */
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: transparent;
    border: 2px solid white;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow i {
    font-size: 1.2rem;
}

.nav-arrow:hover {
    background: white;
    color: var(--color-blue);
    border-color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 0;
        min-height: auto;
        background-color: transparent;
    }

    .testimonial-container {
        min-width: 100vw;
        margin-top: 0;
        background-color: white;
    }
    
    .testimonial-slide {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .testimonial-image {
        width: 100%;
        margin: 0;
    }

    .testimonial-image img {
        width: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .testimonial-card {
        width: 100%;
        padding: 2rem;
        margin-left: 0;
        box-shadow: none;
        background: white;
    }
    
    .testimonial-title {
        font-size: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .client-name {
        font-size: 1rem;
    }
    
    .client-event {
        font-size: 0.85rem;
    }
    
    .testimonial-nav {
        margin-top: 1rem;
        gap: 1rem;
        padding-bottom: 2rem;
        background: white;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        border-color: var(--color-blue);
        color: var(--color-blue);
    }
    
    .nav-arrow:hover {
        background: var(--color-blue);
        color: white;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    width: 100%;
}

/* Top Section - Image Background */
.cta-top {
    background-image: url('https://scontent.fiba2-1.fna.fbcdn.net/v/t51.82787-15/654425736_17994842753920532_8695231171381543139_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=13d280&_nc_eui2=AeF8nRC0bi1LyXg3LFx6TRwymJ0okce2EiyYnSiRx7YSLNgIP19R0o7wmk4P_F9Ae9-_YwcjBqJ4t9DuR1LNBgjB&_nc_ohc=A8Y_qXRlP7UQ7kNvwGzDlgO&_nc_oc=AdokXkmFgJdh5NVb7kcvvw8H2VcCZWRFwmQmyPZbClRv9Nd2iRG4EmCLDAh9eyDWYmY&_nc_zt=23&_nc_ht=scontent.fiba2-1.fna&_nc_gid=JvZhMbOYwG_HM5wChfL27A&_nc_ss=7a3a8&oh=00_Af1ZW4rYlClgIdx8S2NpvUrfT0iwpOcUJNRe4yVc9fMb8g&oe=69D22000');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cta-top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-text {
    max-width: 60vw;
    padding: 2rem;
    margin-top: -5rem;
}

.cta-text p {
    font-size: 3rem;
    line-height: 1.4;
    color: white;
    font-weight: 500;
}

/* Bottom Section - Image Background */
.cta-bottom {
    background-image: url('/images/stripes.png');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 2rem;
    position: relative;
}

.cta-cards-container {
    display: flex;
    justify-content: center;
    gap: 7rem;
    max-width: 90vw;
    margin: 0 auto;
    transform: translateY(-50%);
    width: 100%;
    flex-wrap: wrap;
}

/* Cards */
.cta-card {
    background: white;
    padding: 2.5rem;
    flex: 1;
    width: 40vw;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    text-align: center;
    height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-card:hover {
    transform: translateY(-5px);
}

.cta-card-title {
    font-size: 3rem;
    color: var(--color-blue);
    margin-bottom: 3rem;
    font-weight: 700;
}

.cta-card-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-blue);
    font-weight: bold;
    margin-bottom: 5rem;
}

.cta-card-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-accent);
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 600;
    border: transparent;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
}

.cta-card-btn:hover {
    background-color: var(--color-blue);
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .cta-text{
        min-width: 90vw;
        padding: 0;
        margin: 0;
    }

    .cta-text p {
        font-size: 2.2rem;
    }
    
    .cta-top {
        min-height: 50vh;
    }
    
    .cta-cards-container {
        transform: translateY(-20%);
        gap: 2rem;
    }
    
    .cta-card {
        min-width: 100%;
        padding: 2rem;
        height: auto;
    }
    
    .cta-card-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .cta-card-text{
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-bottom {
        height: fit-content;
        padding: 2rem 1rem 4rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-cream);
    font-family: var(--font-body);
}

/* Top Footer */
.footer-top {
    padding: 5rem 2rem 4rem;
}

.footer-container {
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

/* Left Column - Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.footer-link {
    color: var(--color-blue);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-accent);
}

/* Middle Column - Logo */
.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

/* Right Column - Contact & IG */
.footer-contact {
    flex: 1;
    text-align: right;
}

.footer-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-blue);
    color: var(--color-cream);
    text-decoration: none;
    font-weight: 600;
    border: transparent;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.footer-cta-btn:hover {
    background-color: var(--color-accent);
    color: white;
}

.footer-ig {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    background-color: var(--color-accent);
    padding: 1rem 0;
    padding-right: 1rem;
    justify-content: center;
    margin-left: 5rem;
    border-radius: 5px;
}

.ig-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.ig-handle {
    color: var(--color-cream);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.ig-handle:hover {
    color: var(--color-blue);
}

/* Bottom Footer */
.footer-bottom {
    background-color: var(--color-blue);
    padding: 1rem 2rem;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: white;
    font-size: 0.85rem;
}

.credit {
    color: white;
    font-size: 0.85rem;
}

.credit a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.credit a:hover {
    color: var(--color-accent);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-ig {
        justify-content: center;
        margin-left: 0;
        padding: 1rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* Overlay Message */
.page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 57, 99, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay-content {
    text-align: center;
    padding: 2rem;
}

.overlay-message {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

.overlay-subtext {
    font-size: 1.5rem;
    color: var(--color-gold);
    font-style: italic;
}

@media (max-width: 768px) {
    .overlay-message {
        font-size: 1.4rem;
    }
}