/* ===================== FONTS & VARIABLES ===================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary: #ff80bf;
    --secondary: #1a1a1a;
    --bg: #fff;
    --text: #111;
    --card-bg: #f8f8f8;
    --btn-bg: linear-gradient(45deg, #ff4da6, #ff80bf);
}

/* ===================== GLOBAL ===================== */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
}

/* ===================== NAVBAR ===================== */
.navbar {
    display: flex;
    justify-content: center; /* center nav links */
    align-items: center;
    padding: 20px 50px;
    background: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar .logo {
    position: absolute; /* pin logo left */
    left: 50px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary);
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s;
}

.navbar ul li a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--secondary);
}

/* ===================== HERO ===================== */
.hero {
    height: 100vh;
    background: url('images/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 50px;
}

.hero .overlay {
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.2);
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #555;
}

.hero .btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--btn-bg);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,77,166,0.3);
}

/* ===================== ABOUT ===================== */
.about {
    padding: 100px 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.about p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

/* ===================== GALLERY ===================== */
.gallery {
    padding: 100px 50px;
    text-align: center;
    background: #fff;
}

.gallery h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary);
}

.gallery-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-container .item {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 15px;
    width: calc(33.33% - 20px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-container .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 35px rgba(0,0,0,0.15);
}

.gallery-container .item img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.item-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary);
}

.item-price {
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 10px;
}

.item-desc {
    font-size: 14px;
    color: #555;
}

/* ===================== CONTACT ===================== */
.contact {
    padding: 100px 50px;
    text-align: center;
    background: #fff;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input, .contact textarea {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
    background: #fff;
    color: var(--text);
    resize: none;
}

.contact input::placeholder, .contact textarea::placeholder {
    color: #aaa;
}

.contact button {
    padding: 15px;
    background: var(--btn-bg);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,77,166,0.3);
}

/* ===================== FOOTER ===================== */
footer {
    text-align: center;
    padding: 30px 0;
    background: #fff;
    color: #555;
    border-top: 1px solid #eee;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .gallery-container .item {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 15px;
        background: #fff;
        position: absolute;
        top: 70px;
        right: 0;
        min-width: 220px;
        padding: 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: visible;
    }

    .navbar ul.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .gallery-container .item {
        width: 100%;
    }
}

.hero {
    position: relative;
    height: 100vh;
    background: url('/images/2ew.') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}
