/* ============================================
   2 Can Do Catering - PROFESSIONAL PREMIUM DESIGN
   ============================================ */

/* ============================================
   FONTS & VARIABLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Warm Color Palette */
    --cream: #FFF8F0;
    --warm-white: #FFFBF7;
    --gold: #8B6F47;
    --gold-dark: #5D4037;
    --gold-light: #D2B48C;
    --terracotta: #C97C5D;
    --sage: #9CAF88;
    --sage-dark: #7A9070;
    --charcoal: #3E2723;
    --warm-gray: #6B6B6B;
    --light-gray: #F5F5F5;
    --rich-brown: #8B6F47;
    --dark-brown: #5D4037;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: white;
    background-color: #3E2723;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    scroll-margin-top: 100px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

img.loaded,
img[loading="eager"],
.hero-slide img {
    opacity: 1;
}

/* Optimize image rendering for different contexts */
.event-card-image img,
.category-image img,
.gallery-item img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-slide img {
    image-rendering: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: white;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    font-weight: 500;
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-style: italic;
    color: #8B6F47;
    font-weight: 400;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.75rem;
    border-radius: 60px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #8B6F47 0%, #5D4037 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #8B6F47;
    border: 2px solid #8B6F47;
}

.btn-secondary:hover {
    background: #8B6F47;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: #3E2723;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: #3E2723;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.logo img {
    width: 100px;
    height: 100px;
    transition: var(--transition);
}

header.scrolled .logo img {
    width: 55px;
    height: 55px;
}

   .logo-text {
       font-family: var(--font-heading);
       font-size: 2rem;
       color: var(--gold);
       font-weight: 700;
       letter-spacing: -0.5px;
       display: flex;
       align-items: center;
   }

   .logo-text::before {
       content: "2";
       font-size: 2.5rem;
       color: var(--gold-light);
       font-weight: 800;
       margin-right: 0.2rem;
       line-height: 1;
   }

   .logo-text span {
       display: inline;
       line-height: 1;
   }

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8B6F47;
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background-color: #8B6F47;
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   HERO SECTION - PREMIUM
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.85) 0%, rgba(93, 64, 55, 0.85) 100%),
                url('home page hero background image.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* About Page Hero Background */
.hero.about-page-hero {
    background: linear-gradient(135deg, rgba(62, 39, 35, 0.8) 0%, rgba(93, 64, 55, 0.8) 100%),
                url('about page hero background image.jpg') center/cover no-repeat;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
       padding: 2%;
       box-sizing: border-box;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 90%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.3);
    transform: scale(0.95);
       image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
    color: white;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content .subtitle {
    color: #D2B48C;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    display: block;
}

.hero-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 3rem;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-hint svg {
    width: 40px;
    height: 40px;
    fill: white;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: var(--spacing-xxl) 3rem;
    position: relative;
}

section:not(.hero) {
    scroll-margin-top: 100px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
       color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8B6F47, transparent);
}

.section-header p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: white;
    margin-top: 2rem;
}

/* ============================================
   WELCOME SECTION
   ============================================ */
.welcome {
       background: linear-gradient(135deg, #8B6F47 0%, #5D4037 100%);
    position: relative;
    color: white;
       padding: var(--spacing-xxl) 3rem;
}

.welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D2B48C, transparent);
}

.welcome-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.welcome-content p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.welcome .section-header h2 {
    color: white;
}

.welcome .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   EVENT CARDS - PREMIUM
   ============================================ */
.event-types {
    background: #3E2723;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B6F47, #8B4513);
    transform: scaleX(0);
    transition: var(--transition);
}

.event-card:hover::before {
    transform: scaleX(1);
}

.event-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.event-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.event-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
}

.event-card:hover .event-card-image img {
    transform: scale(1.15);
}

.event-card-content {
    padding: 2.5rem;
}

.event-card-content h3 {
    color: #8B6F47;
    margin-bottom: 1.25rem;
    font-size: 1.875rem;
}

.event-card-content p {
    color: white;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* ============================================
   OUR WORK SECTION - WITH CATEGORIES
   ============================================ */
.our-work {
    background: #3E2723;
    padding: var(--spacing-xxl) 3rem;
}

.work-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: var(--spacing-lg) 0;
}

.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 44, 44, 0.9) 100%);
}

.category-overlay h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery {
    background: var(--warm-white);
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.filter-btn {
    padding: 1rem 2.5rem;
    background: white;
    color: #8B6F47;
    border: 2px solid #D2B48C;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B6F47;
    color: white;
    border-color: #8B6F47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 300px;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(212, 175, 55, 0.4) 100%
    );
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ============================================
   CTA SECTIONS - PREMIUM
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, #8B6F47 0%, #8B4513 100%);
    color: white;
    text-align: center;
    padding: var(--spacing-xxl) 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: #8B6F47;
}

.cta-section .btn-primary:hover {
    background: var(--cream);
    color: #5D4037;
}

.cta-section .btn-secondary {
    border-color: white;
    color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #8B6F47;
}

/* ============================================
   CONTACT FORM - PREMIUM
   ============================================ */
.contact-section {
    background: var(--warm-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: var(--spacing-lg);
    align-items: start;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    background: white;
    padding: 1.75rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--sage) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-icon svg {
    width: 45px;
    height: 45px;
    fill: white;
}

.contact-method h3 {
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.contact-method p {
    color: var(--sage);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-method a {
    color: white;
    font-weight: 600;
}

.contact-method a:hover {
    color: #8B6F47;
}

/* ============================================
   FOOTER - PREMIUM DESIGN
   ============================================ */
footer {
    background: linear-gradient(135deg, #8B6F47 0%, #5D4037 100%);
    color: white;
    padding: var(--spacing-xl) 3rem 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-contact-item svg {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: white;
    border-color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.social-icon:hover svg {
    fill: white;
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    z-index: 999;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 38px;
    height: 38px;
    fill: white;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 3.5rem;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover {
    color: #8B6F47;
    transform: rotate(90deg);
}

.lightbox-caption {
    position: absolute;
    bottom: -70px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.9);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 1.25rem 1.75rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 10px;
}

.lightbox-prev {
    left: -100px;
}

.lightbox-next {
    right: -100px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #8B6F47;
    transform: translateY(-50%) scale(1.1);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .event-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    section {
        padding: var(--spacing-xl) 2rem;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--warm-white);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .work-categories {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .nav-container {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 2rem;
        right: 2rem;
    }
    
    .whatsapp-float svg {
        width: 32px;
        height: 32px;
    }
    
    section {
        padding: var(--spacing-lg) 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
        max-width: none;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gold {
    color: #8B6F47;
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}
/* CTA Contact Info Styling */
.cta-contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-contact-info p {
    color: white !important;
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.cta-contact-info p strong {
    color: white !important;
    font-weight: 600;
}

/* HOME PAGE - ENSURE ALL TEXT IS WHITE */
/* Our Work Section */
.our-work {
    background: #3E2723;
    color: white;
}

.our-work .section-header h2 {
    color: white !important;
}

.our-work .section-header p {
    color: white !important;
}

/* Event Types Section - White Text */
.event-types {
    background: #3E2723;
}

.event-types .section-header h2 {
    color: white !important;
}

.event-types .section-header p {
    color: white !important;
}

.event-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.event-card-content h3 {
    color: #8B6F47 !important;
}

.event-card-content p {
    color: white !important;
}

.event-card .btn-primary {
    background: #8B6F47;
    color: #3E2723;
}

.event-card .btn-primary:hover {
    background: #D2B48C;
    color: #3E2723;
}

/* Gallery Grid Section */
.gallery-grid-section {
    background: #3E2723;
}

.gallery-grid-section .section-header h2 {
    color: white !important;
}

.gallery-grid-section .section-header p {
    color: white !important;
}

/* Work Categories Section */
.work-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 70%, transparent 100%);
    padding: 2rem;
    color: white;
}

.category-overlay h3 {
    color: #8B6F47 !important;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
}

.category-overlay p {
    color: white !important;
    font-size: 1rem;
    line-height: 1.6;
}

/* COMPREHENSIVE HOME PAGE STYLING - FINAL FIX */
body {
    background-color: #3E2723 !important;
}

/* Ensure all sections have proper backgrounds */
section {
    background-color: #3E2723;
}

/* Override any conflicting styles */
.welcome {
    background: linear-gradient(135deg, #8B6F47 0%, #5D4037 100%) !important;
}

.event-types {
    background: #3E2723 !important;
}

.our-work {
    background: #3E2723 !important;
}

.gallery {
    background: #3E2723 !important;
}

/* Ensure all text is white */
.welcome h2,
.welcome p,
.event-types h2,
.event-types p,
.our-work h2,
.our-work p,
.gallery h2,
.gallery p {
    color: white !important;
}

/* Category overlay text */
.category-overlay h3 {
    color: #8B6F47 !important;
}

.category-overlay p {
    color: white !important;
}

/* PROFESSIONAL CTA SECTION LAYOUT */
.cta-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-main {
    margin-bottom: 3rem;
}

.cta-main h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-main p {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-info h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.contact-numbers {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-name {
    font-weight: 600;
    color: #D2B48C;
    font-size: 1.1rem;
}

.contact-number {
    font-weight: bold;
    color: white !important;
    font-size: 1.1rem;
    font-family: 'Montserrat', monospace;
}

/* Ensure all footer contact info is white */
footer .footer-contact-item,
footer .footer-contact-item div,
footer .footer-contact-item strong,
footer .footer-contact-item span,
footer .contact-numbers,
footer .contact-item,
footer .contact-name,
footer .contact-number {
    color: white !important;
}

/* Force deep brown text for all contact phone numbers */
.contact-method a,
.contact-method strong,
.footer-contact-item a,
.footer-contact-item strong,
.contact-number a,
.contact-number strong,
.contact-number span {
    color: #5D4037 !important;
    font-weight: bold !important;
    text-decoration: none !important;
}

/* Override inline styles for contact numbers */
footer a[href^="tel:"] {
    color: white !important;
    text-decoration: none;
}

footer a[href^="tel:"]:hover {
    color: var(--gold-light) !important;
}

/* Enhanced button styling */
.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, #8B6F47 0%, #5D4037 100%);
    color: white;
    border: none;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #8B6F47;
}

.cta-section .btn-secondary:hover {
    background: #8B6F47;
    color: white;
}

/* Responsive design */
@media (max-width: 768px) {
    .cta-content-wrapper {
        padding: 0 1rem;
    }
    
    .cta-actions {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-numbers {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

/* ============================================
   STANDARD SECTION HEADERS
   ============================================ */
.standard-header {
    background: linear-gradient(135deg, var(--rich-brown), var(--gold-dark));
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.standard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.standard-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.standard-header .subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gold-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .standard-header {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .standard-header h1 {
        font-size: 2.5rem;
    }
    
    .standard-header .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .standard-header h1 {
        font-size: 2rem;
    }
    
    .standard-header .subtitle {
        font-size: 1rem;
    }
}

