@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Core Styles based on salon.html design */

/* Apply Inter font globally */

/* Base Styles */
:root {
    --caf-gold: #b48c51; /* Approximate gold from logo */
    --caf-dark-olive: #5a5a4e; /* Approximate dark olive from logo */
    --caf-white: #ffffff;
    --caf-stone-100: #f5f5f4;
    --caf-stone-50: #fafaf9;
    --caf-stone-200: #e7e5e4;
    --caf-stone-600: #57534e;   --caf-stone-700: #44403c;
    --caf-stone-800: #292524;
    --caf-stone-900: #1c1917;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--caf-stone-100);
    color: var(--caf-stone-800);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    color: var(--caf-stone-900);
    line-height: 1.3;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Header & Navigation */
header {
    background-color: var(--caf-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--caf-stone-600);
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    padding-bottom: 0.25rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--caf-gold);
    border-bottom: 2px solid var(--caf-gold);
}

.nav-active {
    font-weight: 600;
    border-bottom: 2px solid var(--caf-gold);
}

/* Mobile Menu */
#mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--caf-stone-600);
}

#mobile-menu {
    display: none;
}

/* Hero Section */
.hero-bg {
    position: relative;
    background-size: cover;
    background-position: center;
    color: var(--caf-white);
    padding: 6rem 1.5rem;
    text-align: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #a07b47; /* Darker gold for hover */
}

.btn-secondary {
    background-color: var(--caf-white);
    color: var(--caf-dark-olive);
}

.btn-secondary:hover {
    background-color: var(--caf-stone-200);
}

.btn-dark {
    background-color: var(--caf-dark-olive);
    color: var(--caf-white);
}

.btn-dark:hover {
    background-color: #48483e; /* Darker olive for hover */
}

/* Sections */
section {
    padding: 4rem 0;
}

section.bg-white {
    background-color: var(--caf-white);
}

section.bg-light {
    background-color: var(--caf-stone-50);
}

section.bg-dark {
    background-color: var(--caf-dark-olive);
    color: var(--caf-white);
}

/* Cards */
.card {
    background-color: var(--caf-white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.border-top-accent {
    border-top: 4px solid var(--caf-gold);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Footer */
footer {
    background-color: var(--caf-dark-olive);
    color: var(--caf-stone-100);
    padding: 2.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

footer a {
    color: var(--caf-white);
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    color: var(--caf-gold);
    text-decoration: underline;
}

/* Utilities */
.text-center {
    text-align: center;
}

.rounded {
    border-radius: 0.5rem;
}

.shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mb-2 {
    margin-bottom: 0.5rem;
}

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

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

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

.mt-8 {
    margin-top: 2rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.p-6 {
    padding: 1.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

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

    #mobile-menu-button {
        display: block;
    }

    #mobile-menu.show {
        display: block;
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        padding: 3rem 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 