/* This creates a fixed layer for the background that mobile phones can handle */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* This pushes the image behind your text */
    
    /* Using your working direct link */
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2074&auto=format&fit=crop');
    
    background-size: cover;
    background-position: center;
    -webkit-background-size: cover; /* Fix for older Safari */
}

/* Keep your body clean so it scrolls naturally */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-gray);
    background-color: #2c5e3b; /* A fallback green if things load slow */
}
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* Color Palette based on your request */
:root {
    --forest-green: #2C4A3B;
    --sage-green: #8A9A86;
    --light-tan: #F7F5F0;
    --dark-gray: #4A4A4A;
    --light-gray: #E5E7EB;
    --black: #1A1A1A;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-gray);
    /* This is the new background code! */
}

/* The Main Website "Paper" */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-tan);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-weight: 400;
}

/* Header & Navigation */
header {
    background-color: var(--light-tan);
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.logo-img {
    height: 80px; /* Adjust based on your logo's scale */
    width: auto;
}

nav a {
    text-decoration: none;
    color: var(--dark-gray);
    margin-left: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--sage-green);
}

/* General Layout */
.container {
    max-width: 1100px; /* This brings the edges in so the leaves show on the sides */
    margin: 40px auto; /* This adds space at the top and bottom and centers it */
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95); /* 95% solid white, 5% see-through for a cool effect */
    border-radius: 12px; /* Smooth, rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Adds a shadow so it looks like it's floating over the leaves */
}

.text-center { text-align: center; }
.mt-2 { margin-top: 20px; }
.mb-2 { margin-bottom: 20px; }

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--sage-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--forest-green);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: var(--white);
    border: 10px solid var(--light-tan);
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Two Column Split */
.split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.split > div {
    flex: 1;
}

/* Feature Boxes */
.feature-box {
    background-color: var(--white);
    padding: 40px;
    border-top: 4px solid var(--sage-green);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background-color: var(--forest-green);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

footer a {
    color: var(--light-tan);
    text-decoration: none;
    margin: 0 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    header { flex-direction: column; gap: 20px; text-align: center; }
    nav a { margin: 0 10px; display: inline-block; margin-top: 10px; }
    .split { flex-direction: column; }
    body { padding: 0; }
}
/* --- ZEN GALLERY STYLES --- */

/* The Glass Frame for the Gallery */
.zen-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85); /* Slightly more transparent than the main glass */
    border-radius: 16px; /* Soft, rounded corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Soft, floating shadow */
}

/* The Grid Layout */
.photo-grid {
    display: flex;
    flex-wrap: wrap; /* Allows photos to stack on mobile */
    gap: 25px; /* Creates "breathing room" between photos */
    justify-content: center;
}

/* The Individual Photos */
.zen-photo {
    width: 300px;
    height: 300px;
    object-fit: cover; /* Crops photos into perfect squares without stretching them */
    border-radius: 50%; /* This turns them into perfect circles! (Change to 12px if you prefer soft squares) */
    border: 6px solid rgba(255, 255, 255, 0.6); /* A frosted glass border around the photo */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Makes the hover effect perfectly smooth */
}

/* The Hover Effect (Like a stone floating up slightly when you mouse over it) */
.zen-photo:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}
