/* Google Fonts import is in HTML head */

:root {
    --primary: #d4a373;
    /* Gold/Tan accent */
    --secondary: #faedcd;
    /* Light pastel background */
    --dark: #333333;
    --light: #ffffff;
    --text: #4a4a4a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background-color: #fdfbf7;
    /* Very light cream */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background-color: #c49262;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: padding 0.3s;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Navbar height */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay gradient to ensure text readability if needed, though prompt asked for negative space */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0) 100%);
}

.hero-content {
    max-width: 600px;
    padding-left: 10%;
    /* Adjust based on container */
    position: relative;
    z-index: 1;
    transform: translateY(-5vh);
    /* Move content up slightly */
}

.hero-logo {
    max-width: 280px;
    margin-bottom: var(--spacing-md);
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: #666;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-img {
    height: 300px;
    overflow: hidden;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.05);
}

.gallery-info {
    padding: var(--spacing-md);
    text-align: center;
}

.gallery-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-info .price {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.gallery-info .desc {
    color: #777;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-info {
    padding-right: var(--spacing-md);
}

.contact-info p {
    margin-bottom: var(--spacing-md);
    color: #666;
}

.info-item {
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    color: var(--primary);
}

.info-item .label {
    display: none;
    /* Hide if still present */
}

.info-item .value {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 600;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-status {
    margin-top: var(--spacing-sm);
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    color: green;
}

.form-status.error {
    color: red;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: #fff;
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        /* Mobile menu implementation usually requires JS toggle, for simplicity hiding for now or can implement a simple stack */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--dark);
        margin: 5px 0;
        transition: 0.3s;
    }

    .hero-content {
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto var(--spacing-sm) auto;
        max-width: 180px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}