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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, rgba(244, 223, 223, 0.7), #fde2e4, #f7b2bd);
    color: #4a2c2a;
    scroll-behavior: smooth;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 223, 223, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 10%;
    z-index: 1000;
}

nav .logo {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #bd4c56;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #4a2c2a;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #bd4c56;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4a2c2a;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10%;
    background: rgb(236 212 213);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu a {
    color: #4a2c2a;
    text-decoration: none;
    font-weight: 500;
}

/* Hero */
header {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: rgb(0, 0, 0);
    overflow: hidden;
}

header .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.643), rgba(247, 178, 189, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}

header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.header-h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}


.tagline {
    font-size: 1.5rem;
    font-weight: 500;
    min-height: 40px;
    animation: fadeInUp 1.5s ease;
}

/* Section */
section {
    padding: 80px 10%;
    text-align: center;
}

section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #bd4c56;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    height: 250px;
    /* Fix height for uniform cards */
    object-fit: cover;
    /* Crop/fit image nicely */
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    width: 100%;
    display: block;
    border-bottom: 4px solid #f7b2bd;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About */
/* Contact */
#about {
    margin-top: 60px;
}

#about .about-info {
    background: rgb(244 197 202);
    color: #4a2c2a;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
}

#about iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Contact */
#contact {
    margin-top: 60px;
}

#contact .contact-info {
    background: rgb(244 197 202);
    color: #4a2c2a;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 20px;
}

#contact iframe {
    width: 100%;
    height: 350px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    padding: 20px;
    background: #d3959f;
    color: #0e0b0b;
    text-align: center;
    font-size: 0.9rem;
}

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

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

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

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

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    header h1 {
        font-size: 2.8rem;
    }

    header p {
        font-size: 1rem;
    }
}