/* Global layout and theme */
.follow-section {
    width: 100%;
    max-width: 1000px;   /* matches your main content width */
    margin: 40px auto 0 auto;
    text-align: left;
    display: block;
}

}
.gallery-photo {
    width: 512px;          /* or 900px if you prefer larger */
    height: 512px;         /* same height for uniform grid */
    object-fit: contain;   /* keeps proportions without cropping */
    background-color: transparent;

}
.follow-section {
    text-align: left;        /* aligns text like the rest of the page */
    margin-top: 40px;
    max-width: 1000px;       /* matches your main content width */
    margin-left: auto;
    margin-right: auto;      /* centers the container, not the text */
}

.follow-arrow,
.social-icons {
    text-align: center;
    justify-content: center;
}

.follow-section h2 {
    color: #d8b4ff;
    text-shadow: 0 0 10px #6a0dad;
    margin-bottom: 10px;
    margin-top: 5px; /* matches other h2 spacing */
    border-bottom: 2px solid #4b0082; /* matches Where We Serve */
    display: inline-block; /* keeps underline tight */
    padding-bottom: 4px; /* same underline spacing */
}
.follow-section p {
    max-width: 1100px;
    margin: 0 0 12px 0; /* removes auto-centering */
    line-height: 1.6;
    color: #e6d7ff;
    text-align: left;   /* ensures left alignment */
}

/* Text above arrow */
.arrow-text {
    color: #e6d7ff;
    font-size: 1rem;
    margin-bottom: 5px;
    text-shadow: 0 0 8px #b57bff;
}
.follow-arrow {
    width: 90px; /* aligns arrow with Instagram icon */
    margin: 0 auto -5px auto; /* centers + pulls arrow closer */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.curved-arrow {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid #e6d7ff;
    filter: drop-shadow(0 0 8px #b57bff);
}

/* Social icons row — keep ONLY this version */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 5px; /* tighter spacing so arrow points cleanly */
}

/* Instagram glowing + pulsating effect */
.priority-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px #b57bff);
    animation: igPulse 2.4s ease-in-out infinite;
}

@keyframes igPulse {
    0% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px #b57bff);
    }
    50% {
        transform: scale(1.18);
        filter: drop-shadow(0 0 22px #d8b4ff);
    }
    100% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 10px #b57bff);
    }
}

/* Desktop menu layout */
#nav-menu {
    display: flex;
    gap: 20px;
}
/* Desktop menu link color */
#nav-menu a {
    color: #e6d7ff; /* lavender crystal color */
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}
/* Hide hamburger on big screens */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #b57bff;
    border-radius: 4px;
}
/* Hide the menu on phones */
@media (max-width: 768px) {
    #nav-menu {
        display: none;
    }

    #nav-menu.show {
        display: flex;
        flex-direction: column;
        background: #1a1a1a;
        padding: 20px;
        position: absolute;
        top: 70px;
        right: 20px;
        border-radius: 10px;
        box-shadow: 0 0 15px #b57bff;
    }
#nav-menu,
#nav-menu a {
    color: #e6d7ff; /* your crystal lavender text color */
}
#nav-menu a {
    color: #e6d7ff; /* your crystal lavender */
    text-decoration: none;
}


    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .hamburger span {
        width: 30px;
        height: 4px;
        background: #b57bff;
        border-radius: 4px;
    }
}
.social-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

/* 2-column gallery grid */
.gallery-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
    padding: 10px;
}

.gallery-photo {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #4b0082;
    box-shadow: 0 0 20px #6a0dad;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Hover effect */
.gallery-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px #b57bff;
}

/* Mobile responsive: switch to 1 column */
@media (max-width: 700px) {
    .gallery-grid-2 {
        grid-template-columns: 1fr;
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0014;
    color: #e6d7ff;
    overflow-x: hidden;
    position: relative;
}


.menu-photo-container {
    text-align: center;
    margin-top: 30px;
}

.menu-photo {
    width: 100%;
    max-width: 900px;   /* controls how big it can get */
    border-radius: 12px;
    border: 2px solid #4b0082;
    box-shadow: 0 0 20px #6a0dad;
}



/* Animated magical crystal-ball cursor */
body {
    cursor: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='48' height='48'>\
<!-- Breathing aura (outer glow) -->\
<circle cx='30' cy='30' r='16' fill='%23ff4fbf' opacity='0.25'>\
    <animate attributeName='r' values='14;17;14' dur='3s' repeatCount='indefinite'/>\
    <animate attributeName='opacity' values='0.2;0.35;0.2' dur='3s' repeatCount='indefinite'/>\
</circle>\
\
<!-- Pulsing glow (inner aura) -->\
<circle cx='30' cy='30' r='12' fill='%23ff7ad1' opacity='0.45'>\
    <animate attributeName='opacity' values='0.3;0.6;0.3' dur='2.5s' repeatCount='indefinite'/>\
</circle>\
\
<!-- Crystal ball core -->\
<circle cx='30' cy='30' r='10' fill='%23ff9ad6' stroke='%23ff4fbf' stroke-width='2'/>\
\
<!-- Sparkles inside the crystal -->\
<circle cx='27' cy='27' r='1.5' fill='white' opacity='0.9'>\
    <animate attributeName='opacity' values='0.4;1;0.4' dur='2s' repeatCount='indefinite'/>\
</circle>\
<circle cx='33' cy='29' r='1' fill='white' opacity='0.8'>\
    <animate attributeName='opacity' values='0.3;0.9;0.3' dur='1.6s' repeatCount='indefinite'/>\
</circle>\
<circle cx='29' cy='34' r='1.2' fill='white' opacity='0.85'>\
    <animate attributeName='opacity' values='0.5;1;0.5' dur='2.3s' repeatCount='indefinite'/>\
</circle>\
\
<!-- Stylized pointer arrow -->\
<path d='M4 4 L16 9 L9 16 Z' fill='white' stroke='%23ff4fbf' stroke-width='1.5'/>\
</svg>") 4 4, auto;
}



/* Header and navigation */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #4b0082, #000000);
    padding: 8px 24px;
    border-bottom: 2px solid #6a0dad;
    position: sticky;
    top: 0;
    z-index: 50;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    height: 120px;        /* controls the size */
    width: auto;         /* keeps proportions correct */
    object-fit: contain; /* prevents stretching */
    display: block;      /* removes weird spacing */
    filter: drop-shadow(0 0 15px #b57bff) drop-shadow(0 0 30px #6a0dad);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px #b57bff) drop-shadow(0 0 30px #6a0dad);
    }
    50% {
        filter: drop-shadow(0 0 25px #d8b4ff) drop-shadow(0 0 45px #8f3dff);
    }
}

.navbar a {
    margin-left: 20px;
    color: #e6d7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.navbar a:hover {
    color: #cfa9ff;
}

/* Sections */
main {
    padding: 40px 20px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

h1, h2 {
    color: #d8b4ff;
    text-shadow: 0 0 10px #6a0dad;
    margin-bottom: 10px;
}

h2 {
    border-bottom: 2px solid #4b0082;
    display: inline-block;
    padding-bottom: 4px;
    margin-top: 30px;
}

p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* Buttons */
.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #6a0dad;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.button:hover {
    background: #8f3dff;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0b0014;
    color: #a57cff;
    font-size: 0.85rem;
    border-top: 1px solid #4b0082;
}

/* Floating pink boba pearls (bottom of each page) */
.boba {
    position: fixed;
    bottom: -40px;
    width: 22px;
    height: 22px;
    background: radial-gradient(circle, #ff9ad6 0%, #ff4fbf 60%, #c2188f 100%);
    border-radius: 50%;
    opacity: 0.85;
    animation: floatPearl 12s linear infinite;
    box-shadow: 0 0 12px #ff7ad1;
    z-index: 5;
}

@keyframes floatPearl {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-120vh) scale(1.3);
        opacity: 0;
    }
}

/* Simple grids for menu/gallery */
.menu-grid, .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 25px;
}

.menu-card, .gallery-card {
    background: #1a0029;
    border-radius: 10px;
    border: 1px solid #4b0082;
    padding: 18px;
}

.menu-card h3 {
    margin-bottom: 8px;
}

.gallery-card img {
    width: 100%;
    border-radius: 8px;
    border: 2px solid #4b0082;
    margin-bottom: 8px;
}

/* Contact form basic styling (if used later) */
.contact-box {
    background: #1a0029;
    border-radius: 10px;
    border: 1px solid #4b0082;
    padding: 20px;
    max-width: 600px;
}
/* Desktop menu layout */
.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    color: #e6d7ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

/* Glow on hover */
.navbar a:hover {
    color: #d8b4ff;
    text-shadow: 0 0 8px #b57bff;
}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 200;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #e6d7ff;
    border-radius: 4px;
    transition: 0.3s ease;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Hide desktop menu */
    .navbar {
        display: none;
    }

    /* Mobile dropdown */
    #nav-menu.show {
        display: flex;
        flex-direction: column;
        background: #1a1a1a;
        padding: 20px;
        position: absolute;
        top: 80px;
        right: 20px;
        border-radius: 12px;
        box-shadow: 0 0 20px #b57bff;
        animation: dropdown 0.25s ease-out;
    }

    /* Mobile link styling */
    #nav-menu.show a {
        padding: 10px 0;
        color: #e6d7ff;
        text-align: right;
        font-size: 1.1rem;
    }

    @keyframes dropdown {
        from { opacity: 0; transform: translateY(-10px); }
        to   { opacity: 1; transform: translateY(0); }
    }
}
