/* Nova Events Co - Gifting Catalogue Design System */

:root {
    --deep-violet: #1a0f2e;
    /* Primary / Text */
    --champagne-gold: #CAA36B;
    /* Accent / Buttons */
    --pure-white: #FFFFFF;
    /* Background */
    --soft-sand: #F9F8F6;
    /* Secondary BG */
    --modern-lavender: #8253d2;
    /* Title Accent */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);

    --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --shadow-soft: 0 10px 30px rgba(26, 15, 46, 0.05);
    --shadow-premium: 0 20px 40px rgba(26, 15, 46, 0.12);
    --shadow-hover: 0 30px 60px rgba(26, 15, 46, 0.18);
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pure-white);
    color: var(--deep-violet);
    line-height: 1.8;
    overflow-x: hidden;
}

h1,
h2,
h3,
.luxury-font {
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Layout */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header & Glassmorphism */
header {
    height: 120px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
}

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

nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-btn {
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
    white-space: nowrap;
}

.logo {
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 0;
    transition: transform 0.3s ease;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

/* Split Hero Section */
.hero-split {
    display: flex;
    min-height: calc(100vh - 120px);
    width: 100%;
    margin-top: 120px;
}

.hero-split-content {
    flex: 1;
    background-color: #fcf9f6;
    background-image: radial-gradient(rgba(202, 163, 107, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    position: relative;
}

.hero-text-wrapper {
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-split-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: fadeIn 1.5s ease-out;
}

.hero-subtitle {
    display: block;
    color: var(--champagne-gold);
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.hero-text-wrapper h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--deep-violet);
}

.hero-text-wrapper p {
    font-size: 1.2rem;
    margin: 0 0 40px;
    color: #555;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.hero-trust-badge {
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(202, 163, 107, 0.2);
}

.hero-trust-badge i {
    color: var(--champagne-gold);
    font-size: 0.75rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    flex: 0 1 auto;
    padding: 16px 35px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Catalogue Grid */
main {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    color: var(--deep-violet);
    margin-bottom: 10px;
}

.title-accent {
    color: var(--modern-lavender);
    font-weight: 400;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--champagne-gold);
    opacity: 0.2;
    z-index: -1;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--champagne-gold);
    margin: 25px auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 120px;
}

/* Product Cards */
.product-card {
    background: var(--pure-white);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(26, 15, 46, 0.05);
    position: relative;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--champagne-gold);
}

.product-image-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.product-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-card::before {
    content: 'View Details';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--pure-white);
    padding: 12px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    z-index: 10;
    transition: var(--transition);
    pointer-events: none;
    white-space: nowrap;
}

.product-card:hover::before {
    opacity: 1;
    top: 40%;
}

.product-info {
    padding: 25px;
    background: var(--pure-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--deep-violet);
}

.product-info p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 30px;
    font-weight: 400;
    flex-grow: 1;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 14px 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition);
    flex: 1;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--champagne-gold);
    color: var(--pure-white);
    border: none;
    box-shadow: 0 10px 20px rgba(202, 163, 107, 0.2);
}

.btn-primary:hover {
    background: var(--modern-lavender);
    color: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(130, 83, 210, 0.2);
}

.btn-outline {
    border: 2px solid var(--deep-violet);
    color: var(--deep-violet);
    background: transparent;
}

.btn-outline:hover {
    background: var(--modern-lavender);
    border-color: var(--modern-lavender);
    color: var(--pure-white);
    transform: translateY(-3px);
}

.btn-outline-light {
    border: 2px solid var(--pure-white);
    color: var(--pure-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--pure-white);
    color: var(--deep-violet);
    transform: translateY(-3px);
}

.whatsapp-inquiry.btn-primary {
    background: #25D366;
}

.whatsapp-inquiry.btn-primary:hover {
    background: #128C7E;
}

/* Lead Form Section */
.lead-section {
    padding: 150px 0;
    background: var(--soft-sand);
    position: relative;
}

.lead-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.lead-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.lead-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.inquiry-form {
    background: var(--pure-white);
    padding: 60px;
    border-radius: 0;
    box-shadow: var(--shadow-premium);
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--deep-violet);
    text-transform: uppercase;
    letter-spacing: 0.25em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background: var(--soft-sand);
    border: 2px solid transparent;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    color: var(--deep-violet);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--champagne-gold);
    background: var(--pure-white);
    outline: none;
    box-shadow: 0 0 0 3px rgba(202, 163, 107, 0.2);
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.filter-btn {
    padding: 12px 20px;
    border: 1px solid rgba(26, 15, 46, 0.05);
    background: var(--soft-sand);
    color: var(--deep-violet);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-btn:hover {
    border-color: var(--champagne-gold);
    color: var(--champagne-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
}

.filter-btn.active {
    background: var(--pure-white);
    color: var(--modern-lavender);
    border-color: var(--modern-lavender);
    box-shadow: 0 8px 20px rgba(130, 83, 210, 0.15);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .category-filter {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 30px;
        padding-bottom: 0;
    }

    .filter-btn {
        padding: 10px 8px;
        font-size: 0.6rem;
        letter-spacing: 0.8px;
        text-align: center;
        white-space: normal;
    }
}

@media (max-width: 380px) {
    .category-filter {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .filter-btn {
        padding: 9px 6px;
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-text-wrapper h1 {
        font-size: 4rem;
    }

    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .lead-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .hero-split {
        flex-direction: column-reverse;
        min-height: auto;
        margin-top: 120px;
    }

    .hero-split-content {
        padding: 60px 20px 80px;
    }

    .hero-split-image {
        height: 50vh;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-text-wrapper h1 {
        font-size: 2.8rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .lead-content h2 {
        font-size: 2.8rem;
    }

    .inquiry-form {
        padding: 40px 25px;
    }

    .product-image-wrapper {
        height: 280px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* ===================== */
/* MOBILE RESPONSIVENESS */
/* ===================== */

/* --- Tablet & Small Laptop --- */
@media (max-width: 992px) {
    header {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    nav {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .nav-btn {
        padding: 8px 14px !important;
        font-size: 0.7rem !important;
    }

    .logo img {
        height: 60px;
    }

    .hero-split {
        margin-top: 90px;
    }
}

/* --- Mobile --- */
@media (max-width: 768px) {
    header {
        height: auto;
        min-height: 50px;
        padding: 6px 0;
        background: rgba(255, 255, 255, 0.95);
    }

    .nav-container {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 0 12px 0 0;
    }

    .logo {
        flex-shrink: 0;
        margin-left: -29px;
    }

    .logo img {
        height: 110px;
    }

    nav {
        gap: 5px;
        flex-wrap: nowrap;
        justify-content: flex-end;
        flex-shrink: 1;
        min-width: 0;
    }

    .nav-btn {
        padding: 6px 10px !important;
        font-size: 0.55rem !important;
        letter-spacing: 0.2px !important;
        border-width: 1px !important;
    }

    .container {
        padding: 0 16px;
    }

    /* Scroll offset for fixed header */
    [id] {
        scroll-margin-top: 70px;
    }

    /* Hero */
    .hero-split {
        flex-direction: column-reverse;
        min-height: auto;
        margin-top: 85px;
    }

    .hero-split-content {
        padding: 40px 20px 50px;
    }

    .hero-split-image {
        height: 45vh;
        min-height: 280px;
    }

    .hero-text-wrapper h1 {
        font-size: 2.2rem;
    }

    .hero-text-wrapper p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Section titles */
    .section-title h2 {
        font-size: 2rem;
    }

    .section-title {
        margin-bottom: 40px;
    }

    /* Catalogue */
    main {
        padding: 60px 0;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }

    .product-image-wrapper {
        height: 280px;
    }

    /* Lead / Contact Form */
    .lead-section {
        padding: 80px 0;
    }

    .lead-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lead-content h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .lead-content p {
        text-align: center;
    }

    .inquiry-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px;
        font-size: 0.9rem;
    }

    /* WhatsApp */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }
}

/* --- Small Mobile --- */
@media (max-width: 480px) {
    .hero-text-wrapper h1 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }

    .hero-split-image {
        height: 40vh;
        min-height: 250px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .lead-content h2 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    nav {
        gap: 4px;
    }

    .nav-btn {
        padding: 6px 10px !important;
        font-size: 0.6rem !important;
    }
}

/* Product Card Enhancement */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366 !important;
    color: #FFF !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Trusted Partners Section */
.partners-section {
    padding: 60px 0;
    background: var(--soft-sand);
    border-top: 1px solid rgba(26, 15, 46, 0.05);
    border-bottom: 1px solid rgba(26, 15, 46, 0.05);
}

.partners-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--modern-lavender);
    text-align: center;
    margin-bottom: 40px;
}

.partners-static-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.partner-logo {
    flex: 0 0 auto;
    max-width: 160px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-escape,
.logo-leadsquare {
    max-width: 300px; /* Increased width */
    height: 80px;    /* Increased height to allow the image to grow */
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-logo img:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-static-grid {
        gap: 40px;
    }

    .partner-logo {
        max-width: 100px;
        height: 35px;
    }
}

/* Orders Completed Section - Simple & Clean */
.orders-completed-section {
    padding: 50px 0; /* Reduced padding */
    background: #fff;
    border-bottom: 1px solid rgba(26, 15, 46, 0.05);
}

.orders-header {
    text-align: center;
    margin-bottom: 35px; /* Reduced margin */
    padding: 0 20px;
}

.orders-overline {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--modern-lavender);
    margin-bottom: 12px;
}

.orders-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-violet);
    margin: 0 0 16px;
    line-height: 1.2;
}

.orders-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Reduced gap */
    max-width: 850px; /* Reduced max-width to make images smaller */
    margin: 0 auto;
    padding: 0 40px;
}

.order-card {
    position: relative;
    border-radius: 12px; /* Slightly sleeker radius */
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(163, 136, 238, 0.1);
}

@media (max-width: 992px) {
    .orders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .orders-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .orders-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .orders-completed-section {
        padding: 60px 0;
    }

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