/* True North Ritual - Custom Styles */

/* CSS Variables for easy customization */
:root {
    --primary-bg: #FFFFFF;
    --accent-color: #1a1a1a;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --border-color: #e5e5e5;
    --gold-bg: #8B7355;
}

/* Base Styles */
body {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.font-franklin {
    font-family: 'Libre Franklin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.font-baskervville {
    font-family: 'Baskervville', serif;
}

/* Header Styles */
header {
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--text-secondary);
}

.nav-link.active {
    font-weight: 600;
}

.nav-link.nav-link-cta {
    background-color: var(--accent-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

.nav-link.nav-link-cta:hover {
    background-color: #333;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
    margin-top: 80px;
    padding-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.hero-section-page {
    height: 60vh;
    min-height: 400px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    background-color: transparent;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Treatment Cards */
.treatment-card {
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
}

/* Social Icons */
.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.social-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--text-primary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-icon-large:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Gold Background */
.bg-gold {
    background-color: var(--gold-bg);
}

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

/* Image Placeholders */
img[src*="images/"] {
    background-color: transparent;
}

/* Mobile Menu Animation */
#mobileMenu {
    transition: all 0.3s ease;
}

#mobileMenu.show {
    display: block;
}

/* Form Styles */
input:focus,
textarea:focus {
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }

    .hero-section-page {
        height: 50vh;
        min-height: 300px;
    }

    .font-baskervville {
        font-size: 0.9em;
    }
}

/* Print Styles */
@media print {
    header,
    footer,
    .btn-primary,
    .btn-secondary {
        display: none;
    }
}
