/* ==========================================================================
   AURELIA SALON - Luxury Redesign
   Inspired by Parlour3 aesthetic with earth tone palette
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* Earth Tone Palette */
    --sage: #697761;
    --sage-dark: #4a5445;
    --sage-light: #8a9a82;
    --olive: #B7B298;
    --olive-dark: #9a9a7d;
    --cream: #E3DECB;
    --ivory: #E2DCCB;
    --white: #FFFFFF;
    --off-white: #F9F8F5;
    --charcoal: #2D2D2D;
    --text: #2d2d2d;
    --text-light: #555555;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { 
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--sage);
    color: var(--white);
}

/* ==========================================================================
   TYPOGRAPHY - Editorial Luxury Style
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--charcoal);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 8rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

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

.subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--sage);
    margin-bottom: 1.5rem;
    display: block;
}

.large-text {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.9;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
}

section {
    padding: 8rem 0;
}

.section-full {
    padding: 0;
}

/* ==========================================================================
   HEADER - Minimal Luxury
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 1px;
    background: var(--charcoal);
    margin: 8px 0;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .site-header { padding: 1rem 1.5rem; }
    
    .mobile-menu-toggle { display: block; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--cream);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
    }
    
    .main-nav.active { right: 0; }
    
    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1rem;
        letter-spacing: 0.3em;
    }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline:hover {
    background: var(--charcoal);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--cream);
}

.btn-text {
    padding: 0;
    background: none;
    color: var(--sage);
    border-bottom: 1px solid var(--sage);
    letter-spacing: 0.15em;
}

.btn-text:hover {
    color: var(--sage-dark);
    border-color: var(--sage-dark);
}

/* ==========================================================================
   HERO - Full Screen Editorial
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    overflow: hidden;
}

.hero-split {
    display: flex;
    width: 100%;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 6rem;
    background: var(--cream);
}

.hero-content h1 {
    margin-bottom: 2rem;
    line-height: 0.95;
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .hero { height: auto; min-height: auto; }
    .hero-split { flex-direction: column; }
    .hero-content { padding: 10rem 2rem 5rem; }
    .hero-image { height: 70vh; }
}

/* Hero Full Width Variant */
.hero-full {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}

.hero-full .hero-content {
    position: relative;
    z-index: 2;
    background: none;
    color: var(--white);
    text-align: center;
    max-width: 900px;
}

.hero-full h1,
.hero-full p {
    color: var(--white);
}

.hero-full .subtitle {
    color: var(--cream);
}

/* ==========================================================================
   SECTIONS - Luxury Editorial
   ========================================================================== */

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

/* Two Column Feature */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.feature-split.reverse .feature-image { order: 2; }
.feature-split.reverse .feature-content { order: 1; }

.feature-image {
    position: relative;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    background: var(--off-white);
}

.feature-content h2 {
    margin-bottom: 1.5rem;
}

.feature-content p {
    margin-bottom: 2rem;
    max-width: 450px;
}

@media (max-width: 1024px) {
    .feature-split { grid-template-columns: 1fr; }
    .feature-image { height: 60vh; }
    .feature-content { padding: 4rem 2rem; }
    .feature-split.reverse .feature-image,
    .feature-split.reverse .feature-content { order: unset; }
}

/* Full Width Image Section */
.section-image-full {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-image-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.section-image-full .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 2rem;
}

.section-image-full h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

/* ==========================================================================
   SERVICES - Elegant Grid
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-left: 1px solid rgba(0,0,0,0.1);
}

.service-card {
    padding: 4rem 3rem;
    border-right: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--cream);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.service-card .price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--sage);
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 3rem 2rem; }
}

/* Service List */
.service-list {
    max-width: 700px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.service-item h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
}

.service-item .price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--sage);
}

/* ==========================================================================
   GALLERY - Masonry Style
   ========================================================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(105, 119, 97, 0);
    transition: var(--transition);
}

.gallery-item:hover::after {
    background: rgba(105, 119, 97, 0.3);
}

@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   TESTIMONIALS - Editorial Quote
   ========================================================================== */

.testimonial-section {
    background: var(--sage);
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
}

.testimonial-section .subtitle {
    color: var(--cream);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.testimonial-author {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.8;
}

/* ==========================================================================
   ABOUT / TEAM
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.team-member-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: var(--transition);
}

.team-member:hover .team-member-image img {
    filter: grayscale(0);
    transform: scale(1.02);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .team-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ==========================================================================
   FORMS - Minimal Elegant
   ========================================================================== */

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 0;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--sage);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   GIFT CARDS
   ========================================================================== */

.gift-card-preview {
    background: var(--sage);
    color: var(--white);
    padding: 4rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 3rem;
}

.gift-card-preview h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gift-card-preview .amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
}

.gift-card-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gift-card-option {
    padding: 1.5rem 2.5rem;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.gift-card-option:hover,
.gift-card-option.selected {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.gift-card-option input { display: none; }

.gift-card-amount {
    font-family: var(--font-display);
    font-size: 1.5rem;
}

/* ==========================================================================
   WEDDING
   ========================================================================== */

.wedding-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(0,0,0,0.1);
}

.wedding-package {
    padding: 4rem 3rem;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition);
}

.wedding-package:last-child { border-right: none; }

.wedding-package:hover {
    background: var(--cream);
}

.wedding-package.featured {
    background: var(--sage);
    color: var(--white);
}

.wedding-package.featured h3,
.wedding-package.featured .price {
    color: var(--white);
}

.wedding-package h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.wedding-package .price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--sage);
    margin-bottom: 2rem;
    display: block;
}

.wedding-package ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.wedding-package li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
}

.wedding-package.featured li {
    border-color: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
    .wedding-packages { grid-template-columns: 1fr; }
    .wedding-package { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
    .wedding-package:last-child { border-bottom: none; }
}

/* ==========================================================================
   SHOP
   ========================================================================== */

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    text-align: center;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--off-white);
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-card .price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--sage);
}

@media (max-width: 1024px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FOOTER - Elegant Minimal
   ========================================================================== */

.site-footer {
    background: var(--charcoal);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 0.75rem; }

.footer-column a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover { color: var(--white); }

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--sage);
    border-color: var(--sage);
}

.footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   PAGE HERO - Interior Pages
   ========================================================================== */

.page-hero {
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    padding-top: 100px;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-sage { background: var(--sage); color: var(--white); }
.bg-sage h2, .bg-sage h3 { color: var(--white); }

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   ALERTS
   ========================================================================== */

.alert {
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(105, 119, 97, 0.1);
    border-left: 3px solid var(--sage);
}

.alert-error {
    background: rgba(200, 50, 50, 0.1);
    border-left: 3px solid #c83232;
}

/* Force darker text */
.service-card p,
.feature-content p,
p {
    color: #2d2d2d !important;
    font-weight: 400 !important;
}