@import url('https://fonts.googleapis.com/css2?family=Roboto+Serif:wght@300;400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Biome:wght@400;700&display=swap');

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

body {
    font-family: 'Roboto Serif', serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-shield-img {
    height: 50px;
    width: auto;
}

.logo-text h1 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 3rem;
    margin: 0;
    line-height: 1;
    color: #000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff0000;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/gostwyck_spyder_onroad.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #ffffff;
    max-width: 600px;
    padding: 40px;
}

.hero-content h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.btn:hover {
    background-color: #d60000;
}

/* Models Section */
.models {
    padding: 80px 0;
}

.section-title {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.model-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.model-card:hover {
    transform: translateY(-10px);
}

.model-img {
    height: 250px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.spyder-img {
    background-image: url('assets/gostwyck-spyder.png');
}

.gt-img {
    background-image: url('assets/gostwyck_gt.png');
    position: relative;
}

.gt-img::after {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 10px 20px;
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.model-info {
    padding: 25px;
}

.model-info h3 {
    font-family: 'Biome', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.model-info p {
    margin-bottom: 20px;
}

.accent {
    color: #0070c0;
}

/* Heritage Section */
.heritage {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.heritage-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.heritage-text {
    flex: 1;
}

.heritage-text h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.heritage-image {
    flex: 1;
    height: 400px;
    background-image: url('assets/gostwyck_gt_2.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.archive-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #c41e3a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.archive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.archive-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.archive-card h3 a {
    color: #000;
    text-decoration: none;
}

.archive-card h3 a:hover {
    color: #c41e3a;
}

.archive-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.archive-card p {
    color: #444;
    line-height: 1.6;
}

.technical-note {
    background: #f0f8ff;
    border-left: 4px solid #007acc;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.technical-note h3 {
    color: #007acc;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.technical-note p {
    color: #333;
    margin: 0;
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: #000000;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff0000;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.copyright {
    margin-top: 40px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Additional logo styling can be added here as needed */

/* Link styling in headings */
h2 a {
    text-decoration: none;
    color: #0099ff;
}

h2 a:hover {
    text-decoration: underline;
    color: #0077cc;
}

/* Accent Colors */
.accent-red {
    color: #ff0000;
}

.accent {
    color: #0099ff;
}

/* Story Page Styling */
.story-page {
    padding: 60px 0;
    background-color: #ffffff;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.story-title {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.story-section {
    margin-bottom: 40px;
}

.story-section h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
    border-bottom: 2px solid #0099ff;
    padding-bottom: 10px;
}

.story-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
}

.story-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* Model Page Styling */
.model-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.model-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.model-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.model-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px 0;
    width: 100%;
}

.model-title {
    font-family: 'Biome', 'Arial Black', sans-serif;
    font-size: 4rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.model-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.coming-soon-badge {
    display: inline-block;
    background-color: rgba(255, 0, 0, 0.9);
    color: white;
    padding: 8px 16px;
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-top: 10px;
}

.model-page {
    padding: 80px 0;
}

.model-description {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.description-content h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.description-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.model-detail-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.model-specs {
    margin-bottom: 80px;
}

.model-specs h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.spec-group h3 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0099ff;
    border-bottom: 2px solid #0099ff;
    padding-bottom: 10px;
}

.spec-group ul {
    list-style: none;
}

.spec-group ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: #333;
}

.model-components {
    margin-bottom: 80px;
}

.model-components h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.components-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.component-item {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #0099ff;
}

.component-item h3 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.component-item p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #333;
}

.model-story {
    background: #f8f8f8;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.model-story h2 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #000;
}

.model-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.development-timeline {
    margin: 30px 0;
}

.development-timeline h3 {
    font-family: 'Aharoni', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #0099ff;
}

.development-timeline ul {
    list-style: none;
}

.development-timeline ul li {
    padding: 8px 0;
    color: #333;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #eee;
        z-index: 100;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .heritage-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}