/**
 * Remington Studios Group - Main Stylesheet
 * Professional entertainment studio website
 * Version: 1.0
 */

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

:root {
    --primary-dark: #1a1a1a;
    --charcoal: #2c2c2c;
    --warm-gold: #d4af37;
    --soft-white: #fafafa;
    --warm-gray: #8a8a8a;
    --accent-gold: #b8860b;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--soft-white);
    background-color: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--warm-gold);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--soft-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--warm-gold);
}

.nav-links a.active {
    color: var(--warm-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--soft-white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.hero.with-image {
    background: linear-gradient(rgba(26, 26, 26, 0.6), rgba(44, 44, 44, 0.6)), 
                url('images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--soft-white);
}

.hero h1 span {
    color: var(--warm-gold);
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    color: var(--warm-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Arial', sans-serif;
}

/* Hero Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(44, 44, 44, 0.7) 100%);
    z-index: 2;
}

/* ==========================================================================
   BUTTONS & CTA
   ========================================================================== */

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--warm-gold);
    color: var(--warm-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 1px;
    margin: 0 10px;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
}

.cta-button:hover {
    background: var(--warm-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.primary {
    background: var(--warm-gold);
    color: var(--primary-dark);
}

.cta-button.primary:hover {
    background: var(--accent-gold);
}

/* ==========================================================================
   SECTIONS & CONTENT BLOCKS
   ========================================================================== */

.section {
    padding: 100px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--warm-gold);
    font-weight: 300;
    letter-spacing: 1px;
}

/* ==========================================================================
   PAGE HEADERS
   ========================================================================== */

.page-header {
    margin-top: 80px;
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--primary-dark) 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header.with-image {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.page-header.about-header {
    background-image: linear-gradient(rgba(44, 44, 44, 0.8), rgba(26, 26, 26, 0.9)), 
                      url('images/about-header.jpg');
}

.page-header.projects-header {
    background-image: linear-gradient(rgba(44, 44, 44, 0.8), rgba(26, 26, 26, 0.9)), 
                      url('images/projects-header.jpg');
}

.page-header.news-header {
    background-image: linear-gradient(rgba(44, 44, 44, 0.8), rgba(26, 26, 26, 0.9)), 
                      url('images/news-header.jpg');
}

.page-header.contact-header {
    background-image: linear-gradient(rgba(44, 44, 44, 0.8), rgba(26, 26, 26, 0.9)), 
                      url('images/contact-header.jpg');
}

.page-title {
    font-size: 3rem;
    color: var(--warm-gold);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    font-weight: 300;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--warm-gray);
    font-family: 'Arial', sans-serif;
    position: relative;
    z-index: 2;
    font-style: italic;
}

/* ==========================================================================
   HOMEPAGE SPECIFIC STYLES
   ========================================================================== */

/* Philosophy Section */
.philosophy {
    background: var(--charcoal);
    position: relative;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy-quote {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--warm-gold);
    line-height: 1.4;
}

.philosophy-text {
    font-size: 1.1rem;
    color: var(--soft-white);
    font-family: 'Arial', sans-serif;
    line-height: 1.8;
}

/* Projects Preview */
.projects-preview {
    background: var(--primary-dark);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--charcoal);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.project-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(45deg, var(--charcoal), var(--warm-gold));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

/* Project-specific images */
.project-bonds-devotion {
    background-image: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.3)), 
                      url('images/bonds-devotion-thumbnail.jpg');
}

.project-short-film {
    background-image: linear-gradient(rgba(26, 26, 26, 0.3), rgba(26, 26, 26, 0.3)), 
                      url('images/short-film-thumbnail.jpg');
}

.project-image-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--soft-white);
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.project-content {
    padding: 2rem;
}

.project-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--warm-gold);
}

.project-status {
    background: var(--warm-gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.project-description {
    color: var(--warm-gray);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    background: var(--charcoal);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-white);
}

.about-highlight {
    color: var(--warm-gold);
    font-weight: bold;
}

.about-visual {
    height: 400px;
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-visual.with-image {
    background-image: linear-gradient(rgba(212, 175, 55, 0.8), rgba(184, 134, 11, 0.8)), 
                      url('images/about-visual.jpg');
}

/* ==========================================================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================================================== */

.main-content {
    padding: 80px 0;
}

.about-section {
    padding: 60px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.about-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-section:nth-child(even) {
    background: var(--charcoal);
}

.about-section h2 {
    color: var(--warm-gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-section h3 {
    color: var(--warm-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-section p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

.intro-section {
    background: var(--primary-dark);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--warm-gold);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visual-element {
    height: 300px;
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0;
}

.mission-statement {
    background: var(--charcoal);
    padding: 4rem 0;
    text-align: center;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mission-content h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.highlight-card {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--charcoal);
}

.highlight-card h4 {
    color: var(--warm-gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   PROJECTS PAGE SPECIFIC STYLES - ENHANCED
   ========================================================================== */

.project-detail {
    background: var(--charcoal);
    margin: 4rem 0;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-detail.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-header {
    padding: 3rem;
    background: linear-gradient(135deg, var(--warm-gold), var(--accent-gold));
    color: var(--primary-dark);
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.project-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.85), rgba(184, 134, 11, 0.85));
    z-index: 1;
}

.project-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 26, 26, 0.3), transparent);
    z-index: 2;
}

/* Project-specific headers with background images */
.project-header.bonds-devotion {
    background-image: url('images/bonds-devotion-header.jpg');
}

.project-header.short-film {
    background-image: url('images/short-film-header.jpg');
}

.project-header.future-projects {
    background-image: url('images/future-projects-header.jpg');
}

.project-header-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.project-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
    display: block;
    width: 100%;
    color: var(--primary-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.project-header .project-status {
    background: var(--primary-dark);
    color: var(--warm-gold);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin: 1rem 0;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.project-header .project-type {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 0.5rem;
    opacity: 0.9;
    display: block;
    width: 100%;
    color: var(--primary-dark);
}

/* Alternative project header layouts */
.project-header.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0;
    min-height: 350px;
}

.project-header.split-layout .project-header-content {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(184, 134, 11, 0.95));
}

.project-header.split-layout .project-header-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 350px;
}

/* Full-width background with centered content */
.project-header.full-bg {
    justify-content: center;
    text-align: center;
}

.project-header.full-bg::before {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(44, 44, 44, 0.8));
}

.project-header.full-bg h2,
.project-header.full-bg .project-type {
    color: var(--soft-white);
}

.project-header.full-bg .project-status {
    background: var(--warm-gold);
    color: var(--primary-dark);
}

.project-info {
    padding: 3rem;
}

.project-info h3 {
    color: var(--warm-gold);
    margin: 2.5rem 0 1.5rem 0;
    font-size: 1.6rem;
    font-weight: 400;
}

.project-info h3:first-child {
    margin-top: 0;
}

.project-info p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

.project-info ul {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-white);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.project-info li {
    margin-bottom: 0.5rem;
}

.project-highlight {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--warm-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.project-highlight p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--warm-gold);
}

.project-visual {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-dark), var(--charcoal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gold);
    font-size: 1.1rem;
    font-weight: bold;
    margin: 2rem 0;
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.timeline {
    background: var(--primary-dark);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.timeline h4 {
    color: var(--warm-gold);
    margin-bottom: 1rem;
}

.timeline-item {
    display: flex;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.timeline-date {
    color: var(--warm-gold);
    font-weight: bold;
    min-width: 120px;
}

.timeline-content {
    color: var(--soft-white);
}

.coming-soon {
    background: linear-gradient(135deg, var(--primary-dark), var(--charcoal));
    border: 2px dashed rgba(212, 175, 55, 0.3);
}

.coming-soon .project-header::before {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.8), rgba(184, 134, 11, 0.8));
}

/* Responsive adjustments for project headers */
@media (max-width: 768px) {
    .project-header {
        padding: 2rem;
        min-height: 250px;
    }

    .project-header h2 {
        font-size: 2rem;
    }

    .project-header.split-layout {
        grid-template-columns: 1fr;
        min-height: 400px;
    }
    
    .project-header.split-layout .project-header-image {
        order: -1;
        min-height: 200px;
    }
    
    .project-header.split-layout .project-header-content {
        padding: 2rem;
    }

    .project-info {
        padding: 2rem;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-date {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
}

/* ==========================================================================
   NEWS PAGE SPECIFIC STYLES
   ========================================================================== */

.news-article {
    background: var(--charcoal);
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-article.visible {
    opacity: 1;
    transform: translateY(0);
}

.news-article.featured {
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.news-header {
    padding: 2.5rem 3rem 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.1));
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.news-date {
    color: var(--warm-gold);
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
}

.news-title {
    font-size: 2.2rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 1.1rem;
    color: var(--warm-gray);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    font-style: italic;
}

.news-content {
    padding: 3rem;
}

.news-content p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--soft-white);
}

.news-content blockquote {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--warm-gold);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--warm-gold);
    border-radius: 0 8px 8px 0;
}

.news-content blockquote p {
    margin-bottom: 0;
    color: var(--warm-gold);
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.news-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--warm-gold);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.newsletter {
    background: var(--charcoal);
    padding: 4rem 0;
    text-align: center;
    margin: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h3 {
    color: var(--warm-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid var(--warm-gold);
    border-radius: 5px;
    color: var(--soft-white);
    font-family: 'Arial', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--warm-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */

.disclaimer {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.disclaimer h3 {
    color: var(--warm-gold);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.disclaimer p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--soft-white);
    margin-bottom: 1rem;
}

.disclaimer .emphasis {
    color: var(--warm-gold);
    font-weight: bold;
}

.contact-section {
    margin: 4rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--charcoal);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: var(--warm-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 300;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--warm-gold);
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid var(--warm-gray);
    border-radius: 8px;
    color: var(--soft-white);
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--warm-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--warm-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.submit-button:disabled {
    background: var(--warm-gray);
    cursor: not-allowed;
    transform: none;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: 'Arial', sans-serif;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.contact-info {
    background: var(--primary-dark);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--charcoal);
}

.contact-info h3 {
    color: var(--warm-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.contact-info h4 {
    color: var(--warm-gold);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 400;
}

.contact-info p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
}

.contact-methods {
    list-style: none;
    margin: 2rem 0;
}

.contact-methods li {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--soft-white);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.contact-methods li::before {
    content: '→';
    color: var(--warm-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.social-section {
    text-align: center;
    background: var(--charcoal);
    padding: 4rem 0;
    margin: 4rem 0;
}

.social-section h3 {
    color: var(--warm-gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.social-section p {
    font-family: 'Arial', sans-serif;
    font-size: 1.1rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--warm-gold);
    color: var(--warm-gold);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.social-link:hover {
    background: var(--warm-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   ERROR PAGE STYLES (404)
   ========================================================================== */

.error-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    text-align: center;
}

.error-container {
    max-width: 600px;
}

.error-code {
    font-size: 8rem;
    font-weight: 300;
    color: var(--warm-gold);
    margin-bottom: 1rem;
    line-height: 1;
    opacity: 0.8;
}

.error-title {
    font-size: 2.5rem;
    color: var(--soft-white);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.error-message {
    font-size: 1.2rem;
    color: var(--warm-gray);
    margin-bottom: 3rem;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestions {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--charcoal);
    border-radius: 15px;
    text-align: left;
}

.suggestions h3 {
    color: var(--warm-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.suggestions-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.suggestions-list li {
    background: var(--primary-dark);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--warm-gold);
}

.suggestions-list a {
    color: var(--soft-white);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.suggestions-list a:hover {
    color: var(--warm-gold);
}

.suggestions-list p {
    color: var(--warm-gray);
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
    background: var(--primary-dark);
    padding: 50px 0;
    border-top: 1px solid var(--charcoal);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--warm-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, 
.footer-section a {
    color: var(--warm-gray);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer-section a:hover {
    color: var(--warm-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--charcoal);
    color: var(--warm-gray);
    font-family: 'Arial', sans-serif;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowPan {
    0% { transform: scale(1) translateX(0); }
    100% { transform: scale(1.1) translateX(-20px); }
}

.error-container {
    animation: fadeInUp 0.8s ease-out;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Typography */
    .hero h1 {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .error-code {
        font-size: 6rem;
    }

    .error-title {
        font-size: 2rem;
    }

    /* Layout */
    .section {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Content blocks */
    .about-section {
        padding: 40px 0;
    }

    .project-header {
        padding: 2rem;
        min-height: 250px;
    }

    .project-header h2 {
        font-size: 2rem;
    }

    .project-info {
        padding: 2rem;
    }

    .news-header {
        padding: 2rem;
    }

    .news-title {
        font-size: 1.8rem;
    }

    .news-content {
        padding: 2rem;
    }

    .disclaimer {
        padding: 2rem;
    }

    .contact-form,
    .contact-info {
        padding: 2rem;
    }

    .suggestions {
        padding: 2rem;
    }

    .suggestions-list {
        grid-template-columns: 1fr;
    }

    /* Forms */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Timeline */
    .timeline-item {
        flex-direction: column;
    }

    .timeline-date {
        min-width: auto;
        margin-bottom: 0.5rem;
    }

    /* Background attachments */
    .hero.with-image,
    .page-header.with-image {
        background-attachment: scroll; /* Fix iOS parallax issues */
    }

    .hero {
        min-height: 100vh;
    }

    .project-image {
        height: 200px;
    }

    .about-visual {
        height: 300px;
    }
}

@media (max-width: 1024px) {
    .project-header {
        grid-template-columns: 1fr;
        min-height: 400px;
    }
    
    .project-header-image {
        order: -1;
        min-height: 200px;
    }
    
    .project-header-content {
        padding: 2rem;
    }

    .hero,
    .page-header {
        background-size: cover;
        background-position: center center;
    }
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    nav,
    .cta-button,
    .contact-form,
    .social-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .page-title {
        font-size: 18pt;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 16pt;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

/* Focus styles for keyboard navigation */
.cta-button:focus,
.submit-button:focus,
.social-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--warm-gold);
    outline-offset: 2px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --warm-gold: #ffcc00;
        --soft-white: #ffffff;
        --primary-dark: #000000;
        --charcoal: #333333;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}