/* 
 * Brookes Beauty Studio - Premium Styles
 * Theme: Warm Luxury (Gold & Bronze)
 */

:root {
    --primary-color: #d4af37;
    /* Gold */
    --primary-dark: #aa8c2c;
    --background-dark: #5e5a52;
    /* Deep Warm Brown/Bronze */
    --background-light: #f9f4f1;
    /* Soft Cream */
    --text-light: #f0e6d2;
    --text-dark: #3e3228;
    --accent: #c5a059;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --spacing-xs: 0.3 rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn:hover {
    background: var(--primary-color);
    color: var(--background-dark);
}

.btn-filled {
    background: var(--primary-color);
    color: var(--background-dark);
}

.btn-filled:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--spacing-lg) 0;
}

/* --- Header --- */
header {
    background-color: rgba(253, 250, 245, 0.98);
    /* Soft Cream/White - "Soft and Modern" */
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#map {
  height: 400px;
  width: 100%;
}
.connect-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 32px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e1e4eb;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-dark);
    /* Darker gold/bronze for visibility on light bg */
    font-weight: bold;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}
.card {
    color: #888;
}

.nav-links a {
    color: var(--text-dark);
    /* Dark text for light header */
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.lang-switch {
    margin-left: 20px;
    font-size: 0.9rem;
    border-left: 1px solid #ccc;
    padding-left: 20px;
}

.lang-switch a {
    margin: 0 5px;
    font-weight: 400;
    color: #888;
}

.lang-switch a.active-lang {
    font-weight: bold;
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    /* Add JS toggle later */
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../window.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Header height */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: var(--spacing-md);
}

/* --- Footer --- */
footer {
    background-color: rgba(253, 250, 245, 0.98);
    padding: var(--spacing-md) 0;
    text-align: center;
    color: #888;
    border-top: 1px solid #332b22;
}