/* ======================= Global Styles & Variables ======================= */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #c09f6b;
    --dark-blue: #2c3e50;
    --light-gray: #f8f8f8;
    --border-color: #e0e0e0;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Poppins', sans-serif;
    --font-calligraphic: 'Dancing Script', cursive;
    --container-width: 1200px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-color); line-height: 1.7; font-weight: 300; }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; }
img { max-width: 100%; height: auto; display: block; }
.section-title { font-family: var(--font-heading); font-size: 2.8rem; text-align: center; margin-bottom: 3rem; font-weight: 600; color: var(--text-color); }
.text-center { text-align: center; }

/* ======================= Buttons ======================= */
.btn { display: inline-block; padding: 12px 30px; text-decoration: none; font-family: var(--font-body); font-weight: 500; border-radius: 2px; transition: all 0.3s ease; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; }
.btn-primary { background-color: var(--accent-color); color: #333; border: 2px solid var(--accent-color); border-radius: 50px; box-shadow: 0 5px 15px rgba(0,0,0,0.15); }
.btn-primary:hover { background-color: transparent; color: var(--accent-color); }
.btn-secondary { background-color: transparent; color: var(--text-color); border: 1px solid var(--text-color); }
.btn-secondary:hover { background-color: var(--text-color); color: var(--bg-color); }

/* ======================= Header ======================= */
.header { background-color: var(--bg-color); position: fixed; width: 100%; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-img { height: 50px; margin-right: 15px; }
.logo-text-container { display: flex; flex-direction: column; }
.logo-main-text { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark-blue); line-height: 1; letter-spacing: 2px; }
.logo-sub-text { font-family: 'Poppins', sans-serif; font-size: 0.6rem; font-weight: 400; color: #888; letter-spacing: 3px; text-transform: uppercase; }
.nav-menu { display: flex; list-style: none; gap: 2.5rem; }
.nav-link { color: var(--text-color); text-decoration: none; font-weight: 400; transition: color 0.3s ease; }
.nav-link:hover { color: var(--accent-color); }
.hamburger { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 2px; margin: 5px auto; background-color: var(--text-color); transition: all 0.3s ease-in-out; }

/* ======================= Hero Section ======================= */
.hero { position: relative; height: 90vh; width: 100%; display: flex; align-items: center; justify-content: center; text-align: center; color: white; }
.hero-image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-image-container::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.4); }
.hero-image-container img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 2; padding: 0 2rem; max-width: 800px; }
.hero-intro-text { font-family: 'Poppins', sans-serif; color: var(--accent-color); font-weight: 500; text-transform: uppercase; letter-spacing: 4px; font-size: 0.9rem; margin-bottom: 1rem; }
.hero-content h1 { font-family: var(--font-heading); font-size: 4.5rem; font-weight: 700; font-style: italic; line-height: 1.1; margin-bottom: 1.5rem; color: white; }
.hero-subheading { font-size: 1.1rem; font-weight: 300; margin-bottom: 2.5rem; color: rgba(255, 255, 255, 0.9); letter-spacing: 1px; }

/* ======================= Services Section ======================= */
.services-section { padding: 6rem 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 3rem 0; }
.service-item i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.service-item h3 { font-family: var(--font-body); font-weight: 500; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 1px; }
/* Add this new rule to remove the default link styling */
.service-item {
    text-decoration: none;
    color: inherit; /* This makes it inherit the color from its parent */
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Adds a subtle lift effect on hover */
}
/* ======================= Portfolio Section ======================= */
.portfolio-section { padding: 6rem 0; background-color: var(--light-gray); }
.portfolio-item { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 4rem; margin-bottom: 4rem; }
.portfolio-item.reverse .portfolio-image { order: 2; }
.portfolio-text { padding: 0 2rem; }
.portfolio-text h3 { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 600; margin-bottom: 1rem; }
.portfolio-text p { font-size: 1.1rem; max-width: 500px; color: #666; }

/* ======================= Feature Description Section ======================= */
.feature-section { padding: 6rem 2rem; border-bottom: 1px solid var(--border-color); }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1000px; margin: 0 auto; }
.feature-item h3 { font-family: var(--font-heading); font-size: 2rem; font-weight: 600; margin-bottom: 1rem; color: var(--text-color); }
.feature-item p { color: #666; line-height: 1.8; }

/* ======================= About Us Section ======================= */
.about-section { padding: 6rem 2rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 6rem; /* Increased gap for more space */ }
.about-image img {
    width: 100%; /* Make image fill its container */
    max-width: 400px; /* Sets a professional medium size */
    display: block; /* Helps with centering */
    margin: 0 auto; /* Centers the image if container is wider */
    border: 10px solid white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12); /* A softer, more professional shadow */
    border-radius: 5px; /* Slightly softens the corners */
}
.about-content .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 2rem; }
.founder-note-container {
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}
.founder-heading {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.founder-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 1rem;
}
.founder-details {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* ======================= Testimonials Section ======================= */
.testimonials-section { padding: 6rem 2rem; background-color: var(--dark-blue); color: #ffffff; }
.testimonials-section .section-title { color: #ffffff; }
.section-subtitle { margin-top: -2.5rem; margin-bottom: 3rem; color: rgba(255, 255, 255, 0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card { background-color: #34495e; padding: 2.5rem 2rem; border-radius: 15px; text-align: left; border: 1px solid #4a6278; box-shadow: 0 10px 20px rgba(0,0,0,0.2); display: flex; flex-direction: column; }
.stars { margin-bottom: 1.5rem; color: #f1c40f; }
.testimonial-text { flex-grow: 1; color: rgba(255, 255, 255, 0.9); font-style: italic; line-height: 1.6; }
.client-info { margin-top: 1.5rem; border-top: 1px solid #4a6278; padding-top: 1rem; }
.client-name { display: block; font-weight: 600; color: #ffffff; }
.client-event { display: block; font-size: 0.85rem; color: var(--accent-color); margin-top: 4px; }

/* ======================= Blog Section ======================= */
.blog-section { padding: 6rem 2rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-post img { margin-bottom: 1rem; aspect-ratio: 4/3; object-fit: cover; }
.blog-post h3 { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; margin-bottom: 0.5rem; }
.blog-post a { text-decoration: none; color: var(--accent-color); font-weight: 500; }

/* ======================= Contact Section ======================= */
.contact-section { padding: 6rem 2rem; background-color: var(--light-gray); }
.contact-form-wrapper { max-width: 900px; margin: 0 auto; background-color: #3a3a3a; color: #ffffff; padding: 4rem; border-radius: 10px; box-shadow: 0 15px 30px rgba(0,0,0,0.15); }
.contact-title { font-family: var(--font-calligraphic); font-size: 3.5rem; font-weight: 700; text-align: center; color: var(--accent-color); margin-bottom: 1rem; }
.contact-subtitle { text-align: center; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; color: rgba(255,255,255,0.6); margin-bottom: 3rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; letter-spacing: 1px; }
.form-group input[type="text"], .form-group input[type="tel"], .form-group input[type="date"], .form-group input[type="number"], .form-group select { background-color: #505050; border: 1px solid #666; color: #ffffff; padding: 12px; border-radius: 5px; font-family: var(--font-body); font-size: 1rem; width: 100%; }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--accent-color); }
.checkbox-group .group-label, .radio-group .group-label { font-weight: 600; color: var(--accent-color); font-size: 1rem; text-transform: none; letter-spacing: 0; }
.options-container { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 0.5rem; }
.options-container label { color: #ffffff; font-size: 1rem; text-transform: none; display: flex; align-items: center; cursor: pointer; }
.options-container input[type="checkbox"], .options-container input[type="radio"] { margin-right: 0.5rem; accent-color: var(--accent-color); width: 18px; height: 18px; }
.contact-form .btn { width: 100%; padding: 15px; font-size: 1.1rem; background-color: #f0f0f0; color: #333; border: none; border-radius: 5px; }
.contact-form .btn:hover { background-color: var(--accent-color); color: #fff; }

/* ======================= Enhanced Footer ======================= */
.site-footer { background-color: #2a2a2a; color: rgba(255,255,255,0.7); padding: 4rem 2rem 0; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; }
.footer-column h4 { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-column a:hover { color: var(--accent-color); }
.social-icons a { font-size: 1.5rem; margin-right: 1rem; }
.footer-bottom { border-top: 1px solid #444; text-align: center; padding: 1.5rem 0; font-size: 0.9rem; color: rgba(255,255,255,0.5); }

/* ======================= WhatsApp Floating Button ======================= */
.whatsapp-float { position: fixed; width: 60px; height: 60px; bottom: 25px; right: 25px; background-color: #25D366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; box-shadow: 2px 2px 6px rgba(0,0,0,0.25); z-index: 1000; transition: transform 0.3s ease; display: flex; justify-content: center; align-items: center; text-decoration: none; }
.whatsapp-float:hover { transform: scale(1.1); }

/* ======================= New Portfolio Page Styles ======================= */
.page-header { padding: 120px 2rem 4rem; text-align: center; background-color: var(--light-gray); }
.page-header h1 { font-family: var(--font-heading); font-size: 3.5rem; }
.full-portfolio-grid { padding: 4rem 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 1rem; }
.portfolio-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.portfolio-gallery-item img:hover { transform: scale(1.03); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

/* ======================= Mobile Responsiveness ======================= */
@media(max-width: 992px) {
    .section-title { font-size: 2.2rem; }
    .hero-content h1 { font-size: 3rem; }
    .portfolio-item, .portfolio-item.reverse { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .portfolio-item.reverse .portfolio-image { order: 1; }
    .portfolio-text p { margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .about-content .section-title { text-align: center; }
    .blog-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
}
@media(max-width: 768px) {
    .nav-menu { position: fixed; left: -100%; top: 80px; flex-direction: column; background-color: var(--bg-color); width: 100%; height: calc(100vh - 80px); text-align: center; transition: 0.3s; gap: 0; overflow-y: auto; }
    .nav-menu.active { left: 0; }
    .nav-item { padding: 1.5rem 0; width: 100%; border-bottom: 1px solid var(--border-color); }
    .hamburger { display: block; }
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .services-grid { grid-template-columns: 1fr 1fr; padding: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .feature-grid { grid-template-columns: 1fr; gap: 3rem; }
    .feature-item { text-align: center; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-form { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 2.5rem 1.5rem; }
}
/* ======================= Thank You Page ======================= */
.thank-you-section {
    padding: 12rem 2rem;
    text-align: center;
    background-color: var(--light-gray);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.thank-you-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2.5rem;
}

/* ======================= Netlify Honeypot Field ======================= */
/* This hides the anti-spam field from human users */
.hidden-field {
    display: none;
}
