/* =========================
   GLOBAL RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #ffffff;
    line-height: 1.6;
    padding-top: 90px; 
}

/* =========================
   NAVBAR
========================= */

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

nav img {
    width: 30px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #EA2839;
}

/* Mobile */

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* =========================
   GENERAL SECTIONS
========================= */

section {
    padding: 100px 8%;
}

.container {
    max-width: 1200px;
    margin: auto;
}

/* =========================
   HERO
========================= */

.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #EA2839, #c91f2e);
    color: white;
    padding-top: 120px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin: auto;
}

/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: #EA2839;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s ease;
}

.btn:hover {
    background: #c91f2e;
}

/* =========================
   PRODUCTS GRID
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}


/* Fundraising Section */

.fundraising {
    padding: 80px 8%;
    background: #f9f9f9;
}

.fundraising-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.fundraising-text {
    flex: 1;
    min-width: 300px;
}

.fundraising-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.fundraising-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.fundraising-text .highlight {
    font-weight: 600;
    margin-bottom: 25px;
}

.fundraising-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.fundraising-btn:hover {
    background: #d73325;
}

.fundraising-image {
    flex: 1;
    min-width: 300px;
}

.fundraising-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.fundraising-image {
    flex: 1;
    min-width: 300px;
    position: relative; /* IMPORTANT for overlay positioning */
}

.indies-logo {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.indies-logo img {
    height: 40px;
}



/* About Section */

.about {
    padding: 80px 8%;
    background: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-highlight {
    font-weight: 600;
    margin-top: 20px;
}

.products-cta {
    margin-top: 80px;
    padding: 70px 8%;
    background: #f44336;
    color: white;
    text-align: center;
    border-radius: 12px;
}

.primary-btn {
    display: inline-block;
    margin: 15px;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;

}

.primary-btn:hover {
    background: white;
    color: #f44336;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #1e1e1e;
    color: #bbb;
    padding: 60px 8%;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

footer h3 {
    color: white;
    margin-bottom: 15px;
}

footer a {
    color: #bbb;
    text-decoration: none;
}

footer a:hover {
    color: #EA2839;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}


.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: white;
    color: #c0392b; /* your brand red */
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-5px);
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

    section {
        padding: 80px 6%;
    }
}

/* ================= PRODUCT PAGE ================= */

.product-hero {
    padding: 160px 0 80px;
}

.product-hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-details {
    flex: 1;
    min-width: 300px;
}

.product-details h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-variations ul {
    padding-left: 20px;
    margin-bottom: 30px;
}

.product-variations li {
    margin-bottom: 8px;
}

/* INGREDIENTS */

.ingredients-section {
    background: #f8f8f8;
    padding: 80px 0;
    text-align: center;
}

.ingredients-section h2 {
    margin-bottom: 40px;
}

.ingredients-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}


/* ===== LIMITED VARIATION STYLING ===== */

.ingredient-card.limited {
    background: #faf7f5; /* soft off-white */
    border: 1px solid #eee;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.variation-note {
    color: #c0392b; /* brand red */
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}


.ingredient-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ingredient-card h4 {
    margin-bottom: 15px;
}

.ingredient-card small {
    display: block;
    margin-top: 15px;
    color: #777;
}

/* MOBILE FIX */

@media (max-width: 768px) {

    .product-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .product-details h1 {
        font-size: 30px;
    }

    .ingredients-grid {
        flex-direction: column;
        align-items: center;
    }

}

/* Visit Section */

.visit {
    padding: 80px 8%;
    background: #f9f9f9;
    text-align: center;
}

.visit-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.visit-subtitle {
    color: #555;
    margin-bottom: 60px;
}

.visit-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.visit-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.info-block i {
    font-size: 24px;
    color: #f44336;
    margin-top: 5px;
}

.info-block h3 {
    margin-bottom: 8px;
}

.info-block p {
    color: #555;
    line-height: 1.6;
}

.directions-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #f44336;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.directions-btn:hover {
    background: #d73325;
}

/* RIGHT SIDE (MAP) */

.visit-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

/* ===== PREMIUM IMAGE SLIDER ===== */

.slider {
    position: relative;
    max-width: 500px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.slides {
    position: relative;
}

.slide {
    width: 100%;
    display: none;
    border-radius: 20px;
    transition: opacity 0.4s ease;
}

.slide.active {
    display: block;
}

/* Arrows */

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s ease;
}

.prev:hover, .next:hover {
    background: #c0392b;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

/* Dots */

.dots {
    text-align: center;
    padding: 15px 0;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
}

.dot.active {
    background: #c0392b;
    transform: scale(1.2);
}

/* ===== NAPOLITAINE FLAVOURS ===== */

.flavour-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.flavour-grid span {
    background: white;
    padding: 10px 18px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 14px;
}

/* ===== SHAPES ===== */

.shape-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.shape-card {
    padding: 20px 40px;
    background: #faf7f5;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.custom-note {
    max-width: 700px;
    margin: 20px auto 0;
    color: #555;
}

/* ===== PRICING ===== */

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    border: 2px solid #c0392b;
}

.price-card:hover {
    transform: translateY(-6px);
}

.price {
    font-size: 28px;
    font-weight: 600;
    margin-top: 10px;
    color: #c0392b;
}

.preorder-text {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 20px;
}


/* ================= COMING SOON PAGE ================= */

.coming-hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom right, #fff0ec, #ffffff);
    padding: 20px;
}

.footer-csp {
    text-align: center;
}

.coming-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.coming-content p {
    max-width: 600px;
    margin: 0 auto 15px;
    font-size: 18px;
    color: #555;
}

.coming-socials a {
    text-decoration: none;   /* removes underline */
}

.launch-note {
    color: #c0392b;
    font-weight: 600;
    margin-top: 10px;
}

.coming-socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.coming-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #c0392b;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s ease;
}

.coming-socials a:hover {
    transform: translateY(-6px);
    background: #a93226;
}

/* MOBILE */
@media (max-width: 768px) {
    .coming-content h1 {
        font-size: 32px;
    }

    .coming-content p {
        font-size: 16px;
    }
}

/* ===== FLOATING BACKGROUND ===== */

.coming-hero {
    position: relative;
    overflow: hidden;
}

.floating-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none; /* IMPORTANT */
}

.floating-background span {
    position: absolute;
    display: block;
    width: 80px;
    height: 80px;
    background: rgba(192, 57, 43, 0.05); /* soft brand red */
    border-radius: 50%;
    animation: float 20s infinite linear;
}

/* Random positions */
.floating-background span:nth-child(1) {
    top: 80%;
    left: 10%;
    animation-duration: 25s;
}

.floating-background span:nth-child(2) {
    top: 60%;
    left: 80%;
    width: 120px;
    height: 120px;
    animation-duration: 30s;
}

.floating-background span:nth-child(3) {
    top: 20%;
    left: 30%;
    animation-duration: 18s;
}

.floating-background span:nth-child(4) {
    top: 40%;
    left: 60%;
    width: 100px;
    height: 100px;
    animation-duration: 22s;
}

.floating-background span:nth-child(5) {
    top: 10%;
    left: 75%;
    animation-duration: 28s;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* Keep content above background */
.coming-content {
    position: relative;
    z-index: 2;
}

.coming-content {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav img {
    filter: drop-shadow(0 5px 15px rgba(192,57,43,0.2));
}
.launch-badge {
    display: inline-block;
    margin-bottom: 15px;
    background: #c0392b;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}


/* =============================== */
/*           MENTAINANCE           */

/* MAINTENANCE PAGE */
.maintenance-page {
    height: 100vh;
    background: rgba(192, 57, 43, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: black;
    padding: 20px;
}

.maintenance-box {
    position: relative;
    z-index: 2;
}

.maintenance-icon {
    font-size: 50px;
    color: #8c6f3f;
    margin-bottom: 25px;
    animation: floatIcon 3s ease-in-out infinite;
}

.maintenance-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.maintenance-page p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.sub-text {
    margin-top: 10px;
    opacity: 0.7;
}

.maintenance-buttons {
    margin-top: 35px;
}

.btn-outline {
    display: inline-block;
    margin-left: 15px;
    padding: 12px 25px;
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #8c6f3f;
}


/* Subtle Floating Animation */
@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* Mobile */
@media (max-width: 768px) {
    .maintenance-page h1 {
        font-size: 24px;
    }

    .maintenance-buttons a {
        display: block;
        margin: 10px auto;
    }
}

/*           MENTAINANCE           */
/* =============================== */


.pagination {
  display: flex; /* Aligns buttons horizontally */
  justify-content: space-between; /* Pushes buttons to opposite ends */
  margin-top: 20px;
}

.prev-btn, .next-btn {
    display: inline-block;
    margin: 8px;
    padding: 6px 20px;
    border: 2px solid #f44336;
    color: #f44336;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.prev-btn:hover, .next-btn:hover {
    background: #f44336;
    color: white;
}

/* Base Card Style */
.option-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    max-width: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
}

.option-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.option-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Coming Soon Style */
.coming-soon {
    opacity: 0.75;
    background: #f9f9f9;
}

.soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c94f4f;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.lamington-variation {
    padding: 80px 8% 0 8%;
    text-align: center;
}

.lamington-variation h2 {
    font-size: 28px;
    margin-bottom: 50px;
}

.lamington-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.layered-variation {
    padding: 80px 8% 0 8%;
    text-align: center;
}

.layered-variation h2 {
    margin-bottom: 50px;
}

.layered-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* INGREDIENTS */
.ingredients {
    padding: 80px 8%;
    text-align: center;
}

.ingredients p {
    margin-bottom: 10px;
}

.ingredients small {
    font-weight: 600;
    color: #a94442;
}


.ingredients h2 {
    margin-bottom: 50px;
}

.ingredients-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.ingredient-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ingredient-card h3 {
    margin-bottom: 15px;
}

.ingredient-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ingredient-card small {
    font-weight: 600;
    color: #a94442;
}
