/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo {
    height: 70px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(214, 51, 132, 0.3));
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.1);
}


.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 300; /* slimmer */
    letter-spacing: 1px; /* adds elegance */
    color: #333; /* softer than black */
    -webkit-font-smoothing: antialiased; /* smoother rendering */
}


.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #d63384;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #d63384;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: #d63384;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.cta-button:hover {
    background: #b02a5b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 51, 132, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.welcome-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    border-radius: 0 0 25px 25px;
}

.welcome-overlay h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.welcome-overlay h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.welcome-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-house-image {
    width: 100%;
    max-width: 700px;
    height: 600px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.hero-house-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.5);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #fdf2f8, #fff);
    z-index: 1;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d63384, #e91e63);
    margin: 1rem auto;
    border-radius: 2px;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.15);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 51, 132, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.25);
    border-color: #d63384;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #d63384;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(214, 51, 132, 0.1) 0%, transparent 70%);
    transform: rotate(15deg);
    z-index: 1;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #d63384, #e91e63);
    margin: 1rem 0 2rem 0;
    border-radius: 2px;
}

.about-text p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-icon {
    background: #d63384;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #e91e63, #d63384);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.about-placeholder:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(214, 51, 132, 0.5);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #fff 50%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, #fdf2f8, #fff);
    z-index: 1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
}

.gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d63384, #e91e63);
    margin: 1rem auto;
    border-radius: 2px;
}

.gallery > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
}

.category-btn {
    background: #fff;
    color: #d63384;
    border: 2px solid #d63384;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.category-btn:hover {
    background: #d63384;
    color: white;
    transform: translateY(-2px);
}

.category-btn.active {
    background: #d63384;
    color: white;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
    background: #fff;
    border: 2px solid transparent;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(214, 51, 132, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(214, 51, 132, 0.25);
    border-color: #d63384;
}

.gallery-item:hover::before {
    left: 100%;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.modal-caption {
    padding: 1.5rem;
    background: white;
}

.modal-caption h3 {
    color: #d63384;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.modal-caption p {
    color: #666;
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(0,0,0,0.8);
}

.modal-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.nav-btn {
    background: rgba(214, 51, 132, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(214, 51, 132, 1);
    transform: scale(1.1);
}

#prevBtn {
    left: 1rem;
}

#nextBtn {
    right: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.contact > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #f8f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    color: #d63384;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    font-size: 1rem;
}

.contact-form {
    background: #fdf2f8;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d63384;
}

.submit-button {
    width: 100%;
    background: #d63384;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #b02a5b;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    color: #333;
    padding: 3rem 0 1rem;
    border-top: 1px solid #f0f0f0;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.footer-section p {
    color: #666;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #f0f0f0;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        /* padding-top: 90px; */
        margin-top: 0;
        padding-top: calc(120px + 2rem);
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-house-image {
        max-width: 100%;
        height: 400px;
    }

    .welcome-overlay {
        padding: 1.5rem 1rem 1rem;
    }

    .welcome-overlay h3 {
        font-size: 1rem;
    }

    .welcome-overlay h2 {
        font-size: 1.4rem;
    }

    .welcome-overlay p {
        font-size: 0.9rem;
    }

    .services h2,
    .about-text h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .gallery-item img {
        height: 200px;
    }

    .gallery-categories {
        gap: 0.5rem;
        margin: 1.5rem 0;
    }

    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .modal-navigation {
        padding: 0 0.5rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .nav {
        padding: 1rem;
    }

    .brand-logo {
        height: 55px;
        max-width: 65px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

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

    .hero-house-image {
        height: 350px;
    }

    .welcome-overlay {
        padding: 1rem 0.8rem 0.8rem;
    }

    .welcome-overlay h3 {
        font-size: 0.9rem;
    }

    .welcome-overlay h2 {
        font-size: 1.2rem;
    }

    .welcome-overlay p {
        font-size: 0.8rem;
    }

    .about-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .services h2,
    .about-text h2,
    .gallery h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #d63384;
    outline-offset: 2px;
}

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