/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-green: #08381F;
    --golden: #D4AF37;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--white);
    line-height: 1.6;
    background-color: var(--primary-green);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    color: var(--golden);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background-color: var(--golden);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    color: var(--golden);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--white);
}

.btn {
    display: inline-block;
    background-color: var(--golden);
    color: var(--primary-green);
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--golden);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: transparent;
    color: var(--golden);
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* Header Styles */
.header {
    background-color: var(--primary-green);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    /* Removed fixed height - let content determine height */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    /* Add some side padding */
}

.logo img {
    height: 100px;
    /* Good size for desktop */
    width: auto;
    transition: height 0.3s ease;
    /* Smooth transition */
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--golden);
    bottom: -5px;
    left: 0;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    /* Slightly larger for better touch */
    cursor: pointer;
    padding: 5px;
}

.header-cta .cta-btn {
    background-color: var(--golden);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.header-cta .cta-btn:hover {
    background-color: transparent;
    color: var(--golden);
}

/* Tablet and smaller desktop */
@media (max-width: 1200px) {
    .logo img {
        height: 100px;
    }

    .nav-item {
        margin-left: 20px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .header {
        padding: 8px 0;
        /* Reduced padding for mobile */
    }

    .navbar {
        padding: 0 15px;
    }

    .logo img {
        height: 100px;
        /* Bigger logo for mobile - was 80px */
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        /* Increased to accommodate larger header */
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.8rem 0;
        /* Slightly more spacing */
    }

    .nav-link {
        font-size: 1.2rem;
        /* Slightly larger font for mobile readability */
    }

    .menu-toggle {
        display: block;
        z-index: 1000;
        font-size: 2rem;
        /* Larger hamburger icon */
    }

    .header-cta {
        display: none;
        /* Hide CTA button on mobile menu */
    }

    /* Show CTA button inside mobile menu */
    .nav-menu.active .mobile-cta {
        display: block;
        margin-top: 2.5rem;
    }

    .nav-menu.active .mobile-cta .cta-btn {
        display: inline-block;
        font-size: 1.1rem;
        /* Larger CTA button text */
        padding: 12px 25px;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .header {
        padding: 8px 0;
        /* Keep consistent padding */
    }

    .logo img {
        height: 70px;
        /* Still good size - was 70px */
    }

    .menu-toggle {
        font-size: 1.8rem;
    }

    .header-cta .cta-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .logo img {
        height: 70px;
        /* Bigger on small phones too - was 60px */
    }

    .navbar {
        padding: 0 10px;
    }

    .menu-toggle {
        font-size: 1.7rem;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .nav-menu {
        padding-top: 90px;
        /* Adjusted for logo height */
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .logo img {
        height: 85px;
        /* Still good size for very small screens */
    }

    .nav-menu {
        padding-top: 85px;
    }
}

/* Hero Section with Slider */
.hero {
    height: 100vh;
    position: relative;
    margin-top: 35px;
    overflow: hidden;
    background-color: var(--primary-green);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    opacity: 1;
}

/* Slide backgrounds - using CSS gradients with green overlay */
.slide:nth-child(1) {
    background: linear-gradient(rgba(8, 56, 31, 0.423), rgba(8, 56, 31, 0.9)),
        url('../img/slide1.jpg') center/cover no-repeat;
}

.slide:nth-child(2) {
    background: linear-gradient(rgba(8, 56, 31, 0.423), rgba(8, 56, 31, 0.9)),
        url('../img/slide2.jpg') center/cover no-repeat;
}

.slide:nth-child(3) {
    background: linear-gradient(rgba(8, 56, 31, 0.423), rgba(8, 56, 31, 0.9)),
        url('../img/slide3.jpg') center/cover no-repeat;
}

.slide-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--white);
}

.slide-content h1 {
    color: var(--golden);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--golden);
    color: var(--primary-green);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--golden);
    transform: scale(1.2);
}

/* About Section */
.about {
    background-color: var(--primary-green);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hours {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.hours h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--golden);
}

.hours h3 i {
    color: var(--golden);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.day {
    font-weight: 600;
    color: var(--golden);
}

.time {
    font-weight: 600;
    color: var(--white);
    text-align: right;
}

.note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-top: 10px;
}

/* Featured Items Section */
.featured {
    background-color: var(--primary-green);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    overflow: hidden;
}

.items-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 40px 0;
}

.items-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 6));
    }
}

.item {
    min-width: 250px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.item:hover {
    transform: translateY(-10px);
    border-color: var(--golden);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.item-img {
    height: 200px;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-img::before {
    content: '🍰';
    font-size: 4rem;
    opacity: 0.5;
    color: var(--white);
}

.item:nth-child(2) .item-img::before {
    content: '🧁';
}

.item:nth-child(3) .item-img::before {
    content: '🍓';
}

.item:nth-child(4) .item-img::before {
    content: '🥧';
}

.item:nth-child(5) .item-img::before {
    content: '☕';
}

.item:nth-child(6) .item-img::before {
    content: '🥭';
}

.price {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--golden);
    color: var(--primary-green);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
}

.item h3 {
    padding: 15px 15px 5px;
    margin: 0;
    color: var(--golden);
}

.item p {
    padding: 0 15px 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Location Section */
.location {
    background-color: var(--primary-green);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.location-card:hover {
    transform: translateY(-5px);
    border-color: var(--golden);
}

.location-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(212, 175, 55, 0.1);
    color: var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.location-card h3 {
    margin-bottom: 15px;
    color: var(--golden);
}

.location-card p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.location-card p i {
    color: var(--golden);
    width: 20px;
}

.location-btn {
    display: inline-block;
    margin-top: 20px;
    background-color: var(--golden);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--golden);
}

.location-btn:hover {
    background-color: transparent;
    color: var(--golden);
}

/* Footer Styles */
.footer {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--golden);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-motto {
    color: var(--golden);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.social-icons a:hover {
    background-color: var(--golden);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--golden);
    padding-left: 5px;
}

.contact-info,
.hours-info {
    list-style: none;
}

.contact-info li,
.hours-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i,
.hours-info i {
    color: var(--golden);
    margin-right: 10px;
    width: 20px;
}

.hours-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--primary-green);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 20px 0;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 15px 0;
    }

    .header-cta {
        display: none;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .hero {
        height: 80vh;
    }

    section {
        padding: 60px 0;
    }

    .items-track {
        animation-duration: 40s;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Menu Section Styles */
.full-menu {
    padding: 80px 0;
}

.menu-categories {
    margin-top: 50px;
}

.menu-category {
    margin-bottom: 60px;
}

.menu-category h3 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: #D4AF37;
}

.menu-items {
    border-top: 1px solid #eee;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px dashed #ddd;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-info h4 {
    margin: 0;
    color: #ffffff;
    font-size: 1.2rem;
}

.item-info p {
    margin: 5px 0 0;
    color: #fcfcfc;
    font-size: 0.95rem;
}

.item-price {
    font-weight: 700;
    color: #D4AF37;
    font-size: 1.2rem;
    white-space: nowrap;
    margin-left: 20px;
}

/* Animated Copyright Section */
.footer-bottom {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
    background: linear-gradient(90deg,
            rgba(212, 175, 55, 0.1) 0%,
            rgba(212, 175, 55, 0.2) 50%,
            rgba(212, 175, 55, 0.1) 100%);
    border-radius: 15px;
    overflow: hidden;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

/* Floating background elements */
.footer-bottom::before {
    content: '🍰🎂🍪🧁';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 1.5rem;
    opacity: 0.1;
    animation: floatEmojis 20s linear infinite;
    z-index: 0;
}

/* Golden shimmer effect */
.footer-bottom::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -100%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--golden),
            transparent);
    animation: goldenShimmer 3s ease-in-out infinite;
    z-index: 1;
}

/* Copyright text container */
.footer-bottom p {
    position: relative;
    z-index: 2;
    margin: 15px 0;
    line-height: 1.6;
}

/* Main copyright text */
.footer-bottom p:first-child {
    font-size: 1.1rem;
    color: var(--golden);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-bottom p:first-child span {
    display: inline-block;
    animation: bounceYear 2s ease-in-out infinite;
    color: #fff;
    background: var(--golden);
    padding: 2px 8px;
    border-radius: 20px;
    margin: 0 5px;
    box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

/* Tagline with sparkles */
.footer-bottom p:last-child {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.footer-bottom p:last-child::before,
.footer-bottom p:last-child::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: sparkleSpin 2s ease-in-out infinite;
    opacity: 0.7;
}

.footer-bottom p:last-child::before {
    left: -10px;
    animation-delay: 0.5s;
}

.footer-bottom p:last-child::after {
    right: -10px;
    animation-delay: 1s;
}

/* Heartbeat effect for "sweeter" */
.footer-bottom p:last-child em {
    color: var(--golden);
    font-style: normal;
    animation: heartbeat 1.5s ease-in-out infinite;
    display: inline-block;
    padding: 0 2px;
}

/* Floating dots animation */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.floating-dots span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--golden);
    border-radius: 50%;
    animation: floatUp 6s linear infinite;
    opacity: 0.4;
}

.floating-dots span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.floating-dots span:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    width: 3px;
    height: 3px;
}

.floating-dots span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

.floating-dots span:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    width: 2px;
    height: 2px;
}

.floating-dots span:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
}

/* Animations */
@keyframes floatEmojis {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(10px) rotate(-5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes goldenShimmer {
    0% {
        left: -100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

@keyframes bounceYear {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
    }
}

@keyframes sparkleSpin {

    0%,
    100% {
        transform: translateY(-50%) scale(0.8) rotate(0deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    25% {
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    }

    50% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    75% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100px) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-50px) scale(1);
        opacity: 0;
    }
}

/* Pulsing border animation */
@keyframes pulseBorder {

    0%,
    100% {
        border-color: rgba(212, 175, 55, 0.3);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.1);
    }

    50% {
        border-color: rgba(212, 175, 55, 0.6);
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.footer-bottom {
    animation: pulseBorder 4s ease-in-out infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-bottom {
        padding: 20px 15px;
        margin-top: 30px;
    }

    .footer-bottom p:first-child {
        font-size: 1rem;
        letter-spacing: 0.5px;
    }

    .footer-bottom p:first-child span {
        padding: 1px 6px;
    }

    .footer-bottom p:last-child {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .footer-bottom::before {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .footer-bottom p {
        margin: 10px 0;
    }

    .floating-dots span {
        display: none;
        /* Hide on very small screens for performance */
    }
}