/* ========================================
   SATISKIN - LANDING PAGE STYLES
   Based on Apostrophe reference design
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2B2B2B;
    background: #FFFFFF url('../img/spa-room-background-2.webp') no-repeat center center fixed;
    background-size: cover;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A4A4A;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

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

/* ========================================
   BUTTONS
   ======================================== */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-primary {
    display: inline-block;
    background: #2B2B2B;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2B2B2B;
}

.btn-primary:hover {
    background: #FFFFFF;
    color: #2B2B2B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #2B2B2B;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #2B2B2B;
}

.btn-secondary:hover {
    background: #2B2B2B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: sticky;
    top: 0;
    background: #FFFFFF;
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #2B2B2B;
}

.brand-accent {
    color: inherit;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    color: #2B2B2B;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #F4F14C;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: transparent;
    padding: 4rem 0 6rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        115deg,
        rgba(255, 249, 184, 0.38) 0%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(244, 196, 176, 0.3) 100%
    );
    backdrop-filter: saturate(120%) contrast(104%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: #2B2B2B;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4A4A4A;
}

.hero-image {
    position: relative;
}

.image-placeholder {
    background: #F5EFE7;
    border-radius: 20px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    font-size: 1.125rem;
}

/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.hero-image img,
.col-image img,
.testimonial-image img,
.location-map img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.hero-image img {
    aspect-ratio: 3/4;
}

.col-image img {
    aspect-ratio: 4/3;
}

.testimonial-image img {
    aspect-ratio: 1;
}

.location-map img {
    aspect-ratio: 4/3;
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========================================
   BADGES & STICKERS
   ======================================== */
.badge {
    position: absolute;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.badge-yellow {
    background: #F4F14C;
    color: #2B2B2B;
    top: 10%;
    right: -10%;
    transform: rotate(5deg);
}

.badge-mint {
    background: #7FDBDA;
    color: #2B2B2B;
    display: inline-block;
    margin-top: 1rem;
}

.sticker-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sticker-circle.yellow {
    background: #F4F14C;
}

.sticker-circle.mint {
    background: #7FDBDA;
}

.sticker-circle.peach {
    background: #F4C4B0;
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2B2B2B;
}

/* ========================================
   SECTION BACKGROUNDS
   ======================================== */
.section-white,
.section-yellow,
.section-yellow-alt,
.section-cream,
.section-peach {
    background: transparent;
    position: relative;
}

.section-white::before,
.section-yellow::before,
.section-yellow-alt::before,
.section-cream::before,
.section-peach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        115deg,
        rgba(255, 249, 184, 0.38) 0%,
        rgba(255, 255, 255, 0.2) 45%,
        rgba(244, 196, 176, 0.3) 100%
    );
    backdrop-filter: saturate(120%) contrast(104%);
    z-index: 1;
    pointer-events: none;
}

.section-white > .container,
.section-yellow > .container,
.section-yellow-alt > .container,
.section-cream > .container,
.section-peach > .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   INTRO SECTION
   ======================================== */
.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.intro-content .eyebrow {
    color: #999;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
    color: #2B2B2B;
}

.intro-content p {
    font-size: 1.25rem;
    color: #4A4A4A;
}

.about-section {
    position: relative;
}

.about-section::after {
    content: '';
    display: block;
    width: min(920px, 100% - 4rem);
    height: 2px;
    margin: 2.25rem auto 0;
    background: linear-gradient(
        90deg,
        rgba(245, 239, 231, 0) 0%,
        rgba(43, 43, 43, 0.18) 18%,
        rgba(244, 241, 76, 0.55) 50%,
        rgba(43, 43, 43, 0.18) 82%,
        rgba(245, 239, 231, 0) 100%
    );
}

/* ========================================
   SERVICES & PRICING SECTION
   ======================================== */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.services-intro .eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

.services-intro h2 {
    margin-bottom: 1.5rem;
}

.services-intro p {
    font-size: 1.125rem;
}

.pricing-category {
    margin-bottom: 2.25rem;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #2B2B2B;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.price-card {
    background: #FFFFFF;
    border: 2px solid #F5EFE7;
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.price-card:hover {
    border-color: #F4F14C;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border-color: #F4F14C;
    background: #FFFEF5;
}

.price-card.selected {
    border-color: #2B2B2B;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.price-card.featured::before {
    content: "Popular";
    position: absolute;
    top: -12px;
    right: 20px;
    background: #F4F14C;
    color: #2B2B2B;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
}

.price-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.price-card .duration {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.45rem;
}

.price-card .price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2B2B2B;
    margin: 0;
}

.services-cta {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #F5EFE7;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem;
    border: 2px solid #F5EFE7;
    border-radius: 22px;
    background: #FFFEF5;
}

.contact-form {
    margin-top: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2B2B2B;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    border: 2px solid #E7E1D9;
    border-radius: 12px;
    background: #FFFFFF;
    color: #2B2B2B;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    padding: 0.9rem 1rem;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #F4F14C;
}

.form-status {
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-status.active {
    display: block;
    background: #F4F14C;
    color: #2B2B2B;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .pricing-category {
        margin-bottom: 1.75rem;
    }
    
    .contact-form-wrap {
        padding: 1.25rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TWO COLUMN LAYOUT
   ======================================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.col-text {
    padding: 2rem 0;
}

.eyebrow {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 1rem;
}

@media (max-width: 968px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .two-col.reverse {
        direction: ltr;
    }
}

/* ========================================
   STICKER GRID
   ======================================== */
.sticker-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 0;
}

.sticker-item {
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .sticker-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.testimonial-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: 20px;
}

blockquote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    color: #2B2B2B;
    margin-bottom: 1.5rem;
}

cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #4A4A4A;
}

@media (max-width: 968px) {
    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section,
.studio-gallery {
    text-align: center;
    padding: 2rem 0;
}

.studio-location-header {
    max-width: 860px;
    margin: 0 auto 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.studio-location-header .eyebrow {
    margin-bottom: 0.75rem;
    color: #999;
}

.studio-location-header h2 {
    margin-bottom: 1rem;
    color: #2B2B2B;
}

.studio-location-header p {
    margin-bottom: 0;
    color: #4A4A4A;
}

.studio-location-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.studio-info-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(43, 43, 43, 0.1);
    border-radius: 14px;
    padding: 1rem;
    text-align: left;
}

.studio-info-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.studio-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.studio-info-card a {
    border-bottom: 1px solid #2B2B2B;
}

.studio-gallery-compact {
    padding-top: 0;
    max-width: 980px;
    margin: 0 auto;
}

.gallery-grid-interior {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.7rem;
}

.gallery-grid-interior .gallery-item img {
    aspect-ratio: 4 / 3;
    max-height: 140px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #4A4A4A;
    margin-bottom: 3rem;
}

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

.result-item img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    aspect-ratio: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-item:hover img,
.gallery-item:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 968px) {
    .studio-location-info-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-interior {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .results-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid-interior {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .gallery-grid-interior .gallery-item img {
        max-height: 120px;
    }

    .results-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA CENTER
   ======================================== */
.cta-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 0;
}

.cta-center h2 {
    margin-bottom: 2rem;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.merged-location {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(43, 43, 43, 0.08);
}

.location-info h2 {
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #2B2B2B;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.info-block a {
    color: #2B2B2B;
    font-weight: 500;
    border-bottom: 2px solid #F4F14C;
    transition: border-color 0.3s ease;
}

.info-block a:hover {
    border-color: #2B2B2B;
}

.location-map .image-placeholder {
    aspect-ratio: 4/3;
    border-radius: 20px;
}

@media (max-width: 968px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #2B2B2B;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-col p {
    font-size: 0.95rem;
    color: #B0B0B0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #B0B0B0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #F4F14C;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #888;
    margin: 0;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

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

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: none;
    opacity: 1;
    transform: none;
}

/* Smooth transitions for all interactive elements */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}
