body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333333;
    background: #F1E9DE;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
    font-weight: 700;
    margin: 0;
    color: #333333;
}

a {
    color: #AF5A4D;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #73685A;
}

/* Navigation */
.main-nav {
    background: rgba(241, 233, 222, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

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

.logo img {
    display: block;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1;
    color: #AF5A4D;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #AF5A4D;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a:hover {
    color: #73685A;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #AF5A4D;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #AF5A4D 0%, #8B4A42 100%);
    color: #F1E9DE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/SunGrey.png') center center no-repeat;
    background-size: 600px;
    opacity: 0.1;
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Cardo', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

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

.hero-cta {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-cta.primary {
    background: #F1E9DE;
    color: #AF5A4D;
}

.hero-cta.primary:hover {
    background: #73685A;
    color: #F1E9DE;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-cta.secondary {
    background: transparent;
    color: #F1E9DE;
    border: 2px solid #F1E9DE;
}

.hero-cta.secondary:hover {
    background: #F1E9DE;
    color: #AF5A4D;
    transform: translateY(-3px);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: 'Cardo', serif;
    text-align: center;
    color: #333333;
}

/* About Section */
.about-section {
    background: #FFF;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #AF5A4D;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    color: #73685A;
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Portfolio Section */
.portfolio-section {
    background: #F1E9DE;
    color: #333333;
    text-align: center;
}

.portfolio-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.portfolio-filters {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.filter-btn {
    background: none;
    border: 2px solid #AF5A4D;
    color: #AF5A4D;
    padding: 0.7rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover, .filter-btn.active {
    background: #AF5A4D;
    color: #F1E9DE;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(175, 90, 77, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    background: #FFF;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.portfolio-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background: #FFF;
    color: #333333;
}

.services-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: #F8F8F8;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card.featured {
    background: linear-gradient(135deg, #AF5A4D 0%, #8B4A42 100%);
    color: #F1E9DE;
    transform: scale(1.05);
}

.service-header {
    margin-bottom: 1.5rem;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: #AF5A4D;
}

.service-card.featured .price {
    color: #F1E9DE;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #AF5A4D;
    font-weight: bold;
}

.service-card.featured .service-features li {
    border-bottom-color: rgba(241, 233, 222, 0.3);
}

.service-card.featured .service-features li:before {
    color: #F1E9DE;
}

.service-types {
    font-size: 0.9rem;
    color: #73685A;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-types {
    color: rgba(241, 233, 222, 0.8);
}

.service-btn {
    background: #AF5A4D;
    color: #F1E9DE;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.service-btn:hover {
    background: #73685A;
    transform: translateY(-2px);
}

.service-card.featured .service-btn {
    background: #F1E9DE;
    color: #AF5A4D;
}

.service-card.featured .service-btn:hover {
    background: rgba(241, 233, 222, 0.9);
}

.pricing-note {
    background: linear-gradient(135deg, #F1E9DE 0%, #E8DDD0 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.pricing-note p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #F1E9DE;
    color: #333333;
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials blockquote {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 15px;
    font-style: italic;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left: 4px solid #AF5A4D;
}

.testimonials blockquote:before {
    content: """;
    font-size: 4rem;
    position: absolute;
    left: 1.5rem;
    top: 0.5rem;
    color: #AF5A4D;
    opacity: 0.7;
}

.testimonials blockquote footer {
    text-align: right;
    font-style: normal;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #73685A;
}

/* FAQ Section */
.faq-section {
    background: #FFF;
    color: #333333;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #F8F8F8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: #AF5A4D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: #F1E9DE;
    color: #333333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #AF5A4D;
    color: #F1E9DE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.step h3 {
    color: #AF5A4D;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step p {
    line-height: 1.6;
    margin: 0;
}

/* Social Proof Section */
.social-proof-section {
    background: #FFF;
    color: #333333;
    text-align: center;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.venue-item {
    background: linear-gradient(135deg, #F1E9DE 0%, #E8DDD0 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.venue-item h4 {
    color: #AF5A4D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.venue-item p {
    margin: 0;
    line-height: 1.8;
    text-align: left;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #AF5A4D 0%, #8B4A42 100%);
    color: #F1E9DE;
    text-align: center;
}

.cta-content h2 {
    color: #F1E9DE;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

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

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #F1E9DE;
    color: #AF5A4D;
}

.cta-btn.primary:hover {
    background: #73685A;
    color: #F1E9DE;
    transform: translateY(-3px);
}

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

.cta-btn.secondary:hover {
    background: #F1E9DE;
    color: #AF5A4D;
    transform: translateY(-3px);
}

/* Instagram Section */
.instagram-section {
    background: #FFF;
    text-align: center;
}

.instagram-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-gallery img, .instagram-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.instagram-gallery img:hover, .instagram-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Instagram posts */
instagram-post {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn {
    display: inline-block;
    background: #AF5A4D;
    color: #F1E9DE;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(175, 90, 77, 0.3);
}

.btn:hover {
    background: #73685A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(115, 104, 90, 0.4);
}

/* Contact Section */
.contact-section {
    background: #F1E9DE;
    color: #333333;
    text-align: center;
}

.contact-section .section-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 800px;
    margin: 3rem auto;
    text-align: left;
    background: #FFF;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: #AF5A4D;
    box-shadow: 0 0 0 3px rgba(175, 90, 77, 0.1);
}

.submit-btn {
    background: #AF5A4D;
    color: #F1E9DE;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(175, 90, 77, 0.3);
    margin: 2rem auto 0;
    display: block;
}

.submit-btn:hover {
    background: #73685A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(115, 104, 90, 0.4);
}

.contact-info {
    margin-top: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #AF5A4D;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333333;
    color: #F1E9DE;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #AF5A4D;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.7;
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #AF5A4D;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(241, 233, 222, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

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

    .hero-text p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-content {
        padding: 3rem 1rem;
    }

    .section-content h2 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

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

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

    .instagram-gallery {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .contact-form {
        margin: 2rem 1rem;
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

/* Enhanced CTA Section */
.limited-offer {
    background: rgba(241, 233, 222, 0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
    margin: 1rem 0 2rem;
    border: 2px dashed #F1E9DE;
}

.limited-offer p {
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .portfolio-item, .testimonials blockquote, .contact-form, .service-card {
        opacity: 0;
        transform: translateY(30px);
        animation: slideInUp 0.6s ease forwards;
    }

    .portfolio-item:nth-child(1) { animation-delay: 0.1s; }
    .portfolio-item:nth-child(2) { animation-delay: 0.2s; }
    .portfolio-item:nth-child(3) { animation-delay: 0.3s; }
    .portfolio-item:nth-child(4) { animation-delay: 0.4s; }
    .portfolio-item:nth-child(5) { animation-delay: 0.5s; }
    .portfolio-item:nth-child(6) { animation-delay: 0.6s; }

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