/* --- Root Colors & Design Setup --- */
:root {
    --bg-cream: #f6f0e5; 
    --text-dark-teal: #104352; 
    --text-rose: #b86f68; 
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark-teal);
    position: relative;
    overflow-x: hidden;
    padding-bottom: 6rem;
}

/* --- Organic Corner Accents --- */
body::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(162,178,159,0.3) 0%, rgba(255,255,255,0) 70%);
    border-radius: 40% 60% 60% 40% / 40% 30% 70% 60%;
    z-index: -1;
}

body::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -50px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(204,136,124,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    z-index: -1;
}

/* --- Header Layout --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px; /* Spaces the mini logo image and business text */
}

.header-logo-img {
    height: 35px; /* Adjust height to scale the top-left mini logo nicely */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--text-dark-teal);
    letter-spacing: -0.5px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.6rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.shop-btn, .contact-btn {
    background-color: var(--text-dark-teal);
    color: #ffffff;
    border: 1px solid var(--text-dark-teal);
}

.btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 4px 10px rgba(16, 67, 82, 0.15);
}

/* --- Hero Layout --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem 3rem 1rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.dino-img {
    max-width: 160px;
    height: auto;
}

/* Brand Tagline Alignment */
.brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 2.2rem;
    font-weight: 600;
    flex-wrap: wrap;
}

.text-dark {
    color: var(--text-dark-teal);
}

.heart-icon {
    color: var(--text-rose);
    font-size: 2rem;
    display: inline-block;
    transform: translateY(-2px);
}

.text-script {
    font-family: 'Great Vibes', cursive;
    color: var(--text-rose);
    font-size: 2.8rem;
    font-weight: 400;
}

/* --- Gallery Layout --- */
.gallery-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.gallery-container h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--text-dark-teal);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.frame-wrapper {
    background: #ffffff;
    padding: 12px;
    border: 1px solid rgba(16, 67, 82, 0.15);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
    aspect-ratio: 4 / 3;
    transition: transform 0.3s ease;
}

.frame-wrapper:hover {
    transform: scale(1.02);
}

.frame-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #fcfbfa;
}

/* --- Bottom Flourish Graphic --- */
.flourish-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
}

.flourish-img {
    max-width: 320px; /* Controls the size of the bottom botanical graphic */
    height: auto;
    opacity: 0.9;
}

/* --- Mobile / Tablet Settings --- */
@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
    }
    .brand-tagline {
        font-size: 1.8rem;
    }
    .text-script {
        font-size: 2.2rem;
    }
    .flourish-img {
        max-width: 240px;
    }
}



