:root {
    --primary-color: #d1c6a5;
    --primary-hover: #b8ad8d;
    --secondary-color: #f5f2e9;
    --text-color: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-color: #fffafa;
    --bg-alt: #faf8f5;
    --white: #ffffff;
    --font-main: 'Epilogue', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Base Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
}

.menu-toggle .material-symbols-outlined {
    font-size: 2rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d2d2d;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    margin-bottom: 3rem;
}

.testimonial-preview {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    font-style: italic;
    color: var(--text-light);
}

.testimonial-preview cite {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--secondary-color);
    border-radius: 200px 200px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
}

.section-subtitle {
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.link-arrow:hover {
    color: var(--primary-color);
    gap: 0.8rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.testimonial-highlight {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.testimonial-highlight p {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.testimonial-highlight cite {
    font-weight: 600;
    color: var(--primary-color);
}

/* Booking Section */
.booking {
    padding: 6rem 0;
    background-color: var(--white);
}

.booking-iframe-container {
    width: 100%;
    margin-top: 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.iframe-note {
    text-align: center;
    padding: 1rem;
    background-color: #fff3cd;
    color: #856404;
    border-top: 1px solid #ffeeba;
}

/* Footer Section */
.footer {
    background-color: #2d2d2d;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.footer-links ul, .footer-contact ul {
    margin-top: 1rem;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer span {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        position: relative;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        display: none;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .hero-container, .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .testimonial-preview {
        margin: 2rem auto;
        text-align: left;
    }

    .image-placeholder {
        height: 300px;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/* Portfolio Section */
.portfolio-header {
    text-align: center;
    padding: 6rem 0 4rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.masonry-grid {
    column-count: 1;
    column-gap: 2.5rem;
}

@media (min-width: 640px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .masonry-grid {
        column-count: 3;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2.5rem;
}

.polaroid-frame {
    background: var(--white);
    padding: 1rem 1rem 3.5rem 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: rotate(-1deg);
    transition: all 0.5s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.polaroid-frame:hover {
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
    position: relative;
}

.polaroid-frame img {
    width: 100%;
    border-radius: 2px;
}

/* Rotate every even item slightly right */
.masonry-item:nth-child(even) .polaroid-frame {
    transform: rotate(1.5deg);
}

.masonry-item:nth-child(even) .polaroid-frame:hover {
    transform: rotate(0) translateY(-10px);
}

/* Rotate every 3rd item slightly left */
.masonry-item:nth-child(3n) .polaroid-frame {
    transform: rotate(-1.5deg);
}

.masonry-item:nth-child(3n) .polaroid-frame:hover {
    transform: rotate(0) translateY(-10px);
}

.polaroid-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1;
}

/* Portfolio Highlight Section */
.portfolio-highlight {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 4rem;
    margin-top: 6rem;
    box-shadow: var(--shadow);
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.before-after-card {
    background: var(--white);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    border: 1px solid #eee;
}

.before-after-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: #999;
    padding: 0 1rem;
}

.highlight-content .badge {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.highlight-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight-lists h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.highlight-lists ul {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-highlight {
        padding: 2rem;
    }
}
}