:root {
    --primary-dark:rgb(55, 61, 182);
    --primary-teal:rgb(73, 144, 155);
    --accent-gold:rgb(71, 17, 87);
    --bg-light:rgb(181, 114, 120);
    --text-dark:rgb(123, 83, 31);
    --text-light:rgb(77, 76, 120);
    --white:rgb(72, 86, 34);
    --glass-b:rgb(23, 54, 79);
    --shadow:rgb(48, 87, 110);
    --transition:rgb(69, 35, 79);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    background-color: beige;
}

.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 15s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-teal);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-gold);
    bottom: 10%;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, 50px); }
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.5);
}

.logo {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color:antiquewhite;
}

.logo span {
    color:aqua;
}

.nav a {
    text-decoration:underline;
    color:#900d81;
    margin-left: 2rem;
    font-weight: 500;
    transition:cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav a:hover {
    color:#9b33a7;
}

.btn-primary {
    background:azure;
    color:aliceblue;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background:azure;
    transform: translateY(-2px);
    box-shadow:antiquewhite;
}

.hero {
    min-height: 80vh;
    background-image:url(Assets/Image/image\ A.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    display: inline-block;
    background:aqua;
    color:bisque;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section {
    padding: 4rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--white);
    transition: var(--transition);
    background-size: cover;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow:aliceblue;
}

.image-wrapper {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Glassmorphism Overlay */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
    border-top: 3px solid var(--primary-teal);
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.overlay .category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-teal);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.overlay p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}


.about-section {
    padding: 6rem 5%;
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

.about-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.footer {
    background:fixed;
    color:antiquewhite;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.social-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        margin-left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .social-links a {
        margin: 0 0.75rem;
    }
}