/*
 * Taos Beauty Brand Website Styles
 *
 * This stylesheet defines the look and feel of the Taos Beauty Brand
 * website. The palette is based on ivory and rose‑gold tones to evoke
 * warmth, sophistication and a subtle nod to the brand’s luxurious roots.
 */

:root {
    /* Rose‑gold primary accent */
    --primary-color: #c79683;
    /* Soft ivory background */
    --secondary-color: #f8f4f1;
    /* Dark text for readability */
    --text-color: #333333;
    /* Transitional hover colour */
    --primary-hover: #b07d6f;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color);
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Hero section with background image */
.hero {
    background-image: url('images/hero-background.png');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
}

.hero-content {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem 3rem;
    border-radius: 10px;
    max-width: 640px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 0;
    color: var(--primary-color);
}

.hero p {
    margin-top: 1rem;
    font-size: 1.25rem;
    color: #555555;
}

.hero-sub {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #666666;
}

.cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta:hover {
    background-color: var(--primary-hover);
}

/* Section layout */
.about, .products, .ambassadors, .contact {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Alternate section background */
.about.alt {
    background: #ffffff;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-lede {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #555555;
}

/* Face of Taos gallery */
.faceoftaos {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faceoftaos h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.face-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
}

.face-card {
    grid-column: span 4;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.face-card.wide {
    grid-column: span 12;
}

.face-card img {
    width: 100%;
    height: auto;
    display: block;
}

.face-card figcaption {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    color: #666666;
}

.callout {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.85);
    border-left: 4px solid var(--primary-color);
    border-radius: 10px;
    padding: 1.25rem 1.5rem;
}

.callout h3 {
    margin: 0;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.callout p {
    margin: 0.5rem 0 0;
    color: #555555;
}

/* Masterclass */
.masterclass {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.masterclass h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.masterclass p {
    color: #555555;
    max-width: 800px;
}

.masterclass-box {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.price {
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
}

.small {
    margin: 0.25rem 0 0;
    color: #666666;
    font-size: 0.95rem;
}

.about h2, .products h2, .ambassadors h2, .contact h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about p {
    color: #555555;
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Products grid */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}

.product-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 300px;
    text-align: center;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    border-radius: 8px;
}

.product-card h3 {
    margin-top: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
}

.product-card p {
    color: #666666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Ambassadors & Contact */
.ambassadors p, .contact p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #555555;
    font-size: 1rem;
}

.contact ul {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: #777777;
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-grid {
        flex-direction: column;
        align-items: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }

    .face-card {
        grid-column: span 12;
    }

    .masterclass-box {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* TaosBabeLiving subsections */
.subsection {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(199, 150, 131, 0.25);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.subsection h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.gallery {
    margin-top: 1rem;
    display: grid;
    gap: 12px;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    object-fit: cover;
}
.gallery-1 {
    grid-template-columns: 1fr;
}
.gallery-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .gallery-3 { grid-template-columns: 1fr; }
}
