/* ============================================
   SAUSALITO DJ - MODERN BLACK THEME CSS
   IMPROVED TYPOGRAPHY VERSION
   ============================================ */

/* ============================================
   TYPOGRAPHY REFERENCE NOTES
   ============================================
   Based on analysis of vinyljen.com and bayareabeatsdjs.com:
   
   VinylJen.com uses:
   - Body text: Clean sans-serif, approximately 18-20px
   - Headings: Bold sans-serif with good contrast
   
   BayAreaBeatsDJs.com uses:
   - Body text: Readable sans-serif, approximately 18-22px
   - Headings: Strong, clear hierarchy
   - Excellent readability with generous spacing
   
   KEY INSIGHTS:
   - Both sites use 18px+ for body text (book-like readability)
   - Clear visual hierarchy with larger headings
   - Generous line-height (1.7-1.8) for body text
   - Adequate letter-spacing for readability
   ============================================ */

/* ============================================
   ROOT VARIABLES
   ============================================ */
:root {
    /* Colors */
    --primary-color: #FFD700;
    --secondary-color: #C9A961;
    --accent-color: #FF6B6B;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #3A3A3A;
    --white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #A0A0A0;
    
    /* Typography - Updated for Better Readability */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes - BOOK-LIKE READABILITY */
    /* Base size increased from 16px to 18px for better readability */
    --font-size-base: 18px;
    --font-size-body: 20px;          /* Main body text - increased from typical 16px */
    --font-size-body-large: 22px;    /* Lead paragraphs, important content */
    --font-size-small: 16px;         /* Footer, captions */
    --font-size-tiny: 14px;          /* Legal text, fine print */
    
    /* Headings - Clear Hierarchy */
    --font-size-h1: clamp(3rem, 6vw, 5rem);      /* 48-80px */
    --font-size-h2: clamp(2.25rem, 4.5vw, 3.5rem); /* 36-56px */
    --font-size-h3: clamp(1.75rem, 3vw, 2.5rem);   /* 28-40px */
    --font-size-h4: clamp(1.5rem, 2.5vw, 2rem);    /* 24-32px */
    --font-size-h5: clamp(1.25rem, 2vw, 1.75rem);  /* 20-28px */
    --font-size-h6: clamp(1.125rem, 1.5vw, 1.5rem); /* 18-24px */
    
    /* Line Heights - Improved Readability */
    --line-height-tight: 1.3;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.75;
    --line-height-loose: 1.9;
    
    /* Letter Spacing */
    --letter-spacing-tight: -0.5px;
    --letter-spacing-normal: 0;
    --letter-spacing-wide: 0.5px;
    --letter-spacing-wider: 1px;
    --letter-spacing-widest: 2px;
    
    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base); /* 18px base */
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--text-light);
    font-size: var(--font-size-body); /* 20px for body text */
    line-height: var(--line-height-relaxed); /* 1.75 for readability */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY ELEMENTS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    color: var(--white);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: var(--font-size-h1);
    letter-spacing: var(--letter-spacing-tight);
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: var(--font-size-h2);
    letter-spacing: var(--letter-spacing-normal);
}

h3 {
    font-size: var(--font-size-h3);
    letter-spacing: var(--letter-spacing-normal);
}

h4 {
    font-size: var(--font-size-h4);
    letter-spacing: var(--letter-spacing-wide);
}

h5 {
    font-size: var(--font-size-h5);
    letter-spacing: var(--letter-spacing-wide);
}

h6 {
    font-size: var(--font-size-h6);
    letter-spacing: var(--letter-spacing-wider);
}

p {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
}

.lead-text,
.hero-subtitle,
.section-subtitle {
    font-size: var(--font-size-body-large); /* 22px */
    line-height: var(--line-height-loose); /* 1.9 */
    color: var(--text-light);
}

.small-text {
    font-size: var(--font-size-small);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: inherit;
}

a:hover {
    color: var(--secondary-color);
}

/* Lists */
ul, ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
}

li {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.75rem; /* Increased from 1.5rem */
    font-weight: var(--font-weight-black);
    color: var(--primary-color);
    letter-spacing: var(--letter-spacing-widest);
    transition: var(--transition-fast);
}

.logo i {
    font-size: 2rem; /* Increased from 1.8rem */
}

.logo:hover {
    transform: scale(1.05);
    color: var(--secondary-color);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    font-weight: var(--font-weight-semibold);
    font-size: 1.05rem; /* Increased from 0.95rem */
    letter-spacing: var(--letter-spacing-wider);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    overflow: hidden;
    padding: 30px 0px;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home_13.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-tight);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: var(--font-size-body-large);
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-light);
    letter-spacing: var(--letter-spacing-wide);
    line-height: var(--line-height-loose);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--primary-color);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem; /* Increased from 1rem */
    letter-spacing: var(--letter-spacing-wider);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--black);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.25rem; /* Increased from 1.1rem */
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-dark {
    background: var(--dark-gray);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h2);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    font-weight: var(--font-weight-bold);
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--font-size-body-large);
    color: var(--text-muted);
    margin-top: var(--spacing-md);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-loose);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: var(--font-size-body-large);
    line-height: var(--line-height-loose);
    color: var(--text-light);
    text-align: center;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background: var(--medium-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--black);
}

.feature-card h3 {
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.feature-card p {
    color: #fff;
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--dark-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-content {
    padding: var(--spacing-md);
}

.service-content h3 {
    font-size: var(--font-size-h4);
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-body);
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 1rem;
}

.service-list {
    list-style: none;
    margin-top: var(--spacing-md);
    padding-left: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 0;
    color: var(--text-muted);
    font-size: var(--font-size-body);
}

.service-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.area-column {
    background: var(--medium-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid var(--light-gray);
}

.area-column h4 {
    color: var(--primary-color);
    font-size: var(--font-size-h5);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.area-column ul {
    list-style: none;
    padding-left: 0;
}

.area-column li {
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: var(--font-size-body);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.area-column li:hover {
    padding-left: var(--spacing-sm);
    color: var(--primary-color);
}

.area-column li:last-child {
    border-bottom: none;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h2);
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.cta-text {
    font-size: var(--font-size-body-large);
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-loose);
}

.cta-subtext {
    margin-top: var(--spacing-md);
    color: var(--text-muted);
    font-style: italic;
    font-size: var(--font-size-body);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h3 {
    color: var(--primary-color);
    font-size: var(--font-size-h5);
    margin-bottom: var(--spacing-md);
}

.footer-column h4 {
    color: var(--white);
    font-size: var(--font-size-h6);
    margin-bottom: var(--spacing-md);
}

.footer-column p {
    color: #fff;
    font-size: var(--font-size-body);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--medium-gray);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
}

.social-links a i {
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: #fff;
    font-size: var(--font-size-body);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: var(--spacing-xs);
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: #fff;
    font-size: var(--font-size-body);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--light-gray);
    color: var(--text-muted);
    font-size: var(--font-size-small);
}

/* ============================================
   CONTACT FORM IFRAME
   ============================================ */
.contact-iframe-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.contact-iframe-container iframe {
    border: none;
    width: 100%;
    min-height: 1500px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    :root {
        --font-size-base: 17px; /* Slightly smaller on tablets */
        --font-size-body: 19px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        padding: var(--spacing-lg);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-base: 16px; /* Standard on mobile */
        --font-size-body: 18px; /* Still larger than typical 16px */
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: var(--spacing-lg) 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 80vh;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/home_13.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-title {
    font-family: var(--font-secondary);
    font-size: var(--font-size-h1);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: var(--font-size-h5);
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

/* ============================================
   CONTACT INFO GRID
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-info-card {
    background: var(--medium-gray);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--black);
}

.contact-info-card h3 {
    font-size: var(--font-size-h4);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--text-muted);
    font-size: var(--font-size-body);
    line-height: var(--line-height-loose);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-sm {
    margin-bottom: var(--spacing-sm);
}

.mb-md {
    margin-bottom: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* ============================================
   REUSABLE TYPOGRAPHY GUIDE
   ============================================
   
   FONT SIZES (Book-like readability):
   - Body text: 20px (var(--font-size-body))
   - Large body: 22px (var(--font-size-body-large))
   - Small text: 16px (var(--font-size-small))
   
   LINE HEIGHTS:
   - Body: 1.75 (var(--line-height-relaxed))
   - Large body: 1.9 (var(--line-height-loose))
   
   HEADINGS:
   - H1: 48-80px responsive
   - H2: 36-56px responsive
   - H3: 28-40px responsive
   - H4: 24-32px responsive
   - H5: 20-28px responsive
   - H6: 18-24px responsive
   
   FONT FAMILIES:
   - Primary: Montserrat (clean, modern sans-serif)
   - Secondary: Playfair Display (elegant serif for headings)
   
   These settings ensure:
   ✓ Easy reading (larger text like a book)
   ✓ Clear hierarchy (distinct heading sizes)
   ✓ Professional appearance
   ✓ Better conversions (more bookings)
   
   Copy these variables to any new project for consistent,
   readable typography across all your DJ websites.
   ============================================ */