:root {
    --light-yellow: #FFFDE7;
    --light-pink: #FFF0F5;
    --light-blue: #f7b0e1;
    --dark-text: #222;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Roboto', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    margin: 0;
    color: var(--dark-text);
    background-color: #FCFCFC;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

h1, h2 {
    font-family: var(--heading-font);
    margin: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
}

.logo h1 {
    font-size: 1.8rem;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 300;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #007BFF;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 85vh;
    min-height: 500px;
    background: url('hero-background.png') no-repeat center center/cover;
    color: white;
    position: relative;
    padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: relative;
    z-index: 1;
    max-width: 650px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 300;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--light-blue);
    color: var(--dark-text);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--light-blue);
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Gallery Section */
.photo-gallery {
    padding: 5rem 5%;
    text-align: center;
    background: linear-gradient(to bottom, #1e003a, #723c18);
}

.photo-gallery h2, .about-section h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.photo-gallery h2::after, .about-section h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--light-pink);
    bottom: -10px;
    left: 20%;
}

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

.gallery-item {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.gallery-item img {
    width: 100%;
    height: 450px;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.gallery-item:nth-child(4n+1) { background-color: var(--light-yellow); }
.gallery-item:nth-child(4n+2) { background-color: var(--light-pink); }
.gallery-item:nth-child(4n+3) { background-color: var(--light-blue); }
.gallery-item:nth-child(4n+4) { background-color: var(--light-yellow); }

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.gallery-item figcaption {
    padding: 1.5rem 1rem 0.5rem;
    font-weight: 700;
    font-style: normal;
    color: var(--dark-text);
    font-size: 1.2rem;
}

.gallery-item p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
}

/* About Section */
.about-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--light-blue);
}

.about-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: #f0f0f0;
    text-align: center;
    padding: 2.5rem 5%;
    font-weight: 300;
}

footer a {
    color: var(--light-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin: 0.5rem 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}