/*
Theme Name: Salon Søndermarken
Description: 2026 Modern, ultra-sleek, and creative theme for Salon Søndermarken.dk.
Version: 2.0
Author: Streetclaw AI
Text Domain: salonsondermarken
*/

:root {
    --bg-main: #FAF9F6; /* Soft off-white */
    --text-dark: #1C1C1C;
    --text-muted: #5A5A5A;
    --accent: #C5A880; /* Elegant soft gold/sand */
    --accent-hover: #A68A64;
    --white: #FFFFFF;
    --radius-lg: 30px;
    --radius-sm: 12px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Header & Nav */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.logo span { color: var(--accent); font-style: italic; }

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.main-nav a:hover { color: var(--accent); }

.btn-book {
    background: var(--text-dark);
    color: var(--white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
}

.btn-book:hover { background: var(--accent); transform: translateY(-2px); }

/* Typography */
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; color: var(--text-dark); }
h1 { font-size: 4.5rem; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
h1 i { color: var(--accent); }
h2 { font-size: 3rem; margin-bottom: 40px; text-align: center; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #FAF9F6 70%);
}

.hero-content { max-width: 800px; z-index: 2; }
.hero p { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; font-weight: 300; }

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.3);
}

.btn-primary:hover { background: var(--text-dark); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Layout Sections */
.section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.02);
    text-align: center;
}

.price-card:hover { transform: translateY(-10px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.price-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.price-card p.price { font-size: 1.5rem; color: var(--accent); margin-bottom: 20px; font-style: italic; }
.price-card ul { list-style: none; color: var(--text-muted); font-size: 0.95rem; }
.price-card ul li { padding: 8px 0; border-bottom: 1px solid #eee; }
.price-card ul li:last-child { border-bottom: none; }

/* Gallery - Masonry feel */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    aspect-ratio: 4/5;
}

.gallery-grid img:hover { transform: scale(1.03); }
.gallery-grid img:nth-child(2) { transform: translateY(40px); }
.gallery-grid img:nth-child(2):hover { transform: translateY(40px) scale(1.03); }

/* Flex Sections (About & Booking) */
.split-section {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    margin: 60px auto;
}

.split-content { flex: 1; }
.split-content h2 { text-align: left; margin-bottom: 20px; }
.split-visual { flex: 1; }

.booking-frame {
    width: 100%;
    min-height: 500px;
    border-radius: var(--radius-sm);
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed #ccc;
    color: var(--text-muted);
}

/* Info Grid (Hours etc) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.info-box { background: var(--white); padding: 40px; border-radius: var(--radius-lg); text-align: center; }
.info-box h3 { font-size: 1.5rem; margin-bottom: 15px; color: var(--accent); }
.info-box p, .info-box ul { color: var(--text-muted); list-style: none; }

/* Footer */
footer {
    text-align: center;
    padding: 60px 5%;
    background: var(--text-dark);
    color: var(--white);
    margin-top: 100px;
}

footer p { color: rgba(255,255,255,0.6); font-weight: 300; }

/* Responsive */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    .split-section { flex-direction: column; padding: 40px 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid img:nth-child(2) { transform: none; }
    .gallery-grid img:nth-child(2):hover { transform: scale(1.03); }
    .main-nav { display: none; /* Add hamburger menu in real JS */ }
    .info-grid { grid-template-columns: 1fr; }
}