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

@import url("variables.css");


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


html {
    scroll-behavior:smooth;
}


body {

    font-family:var(--body-font);
    color:var(--charcoal);
    background:var(--white);
    line-height:1.6;

}


h1,h2,h3,h4 {

    font-family:var(--heading-font);
    font-weight:700;

}


img {

    max-width:100%;
    display:block;

}


a {

    text-decoration:none;
    color:inherit;

}


.container {

    width:90%;
    max-width:var(--max-width);
    margin:auto;

}


.section {

    padding:var(--section-padding) 0;

}


/* Buttons */

.btn {

    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;

}


.btn-primary {

    background:var(--clay);
    color:white;

}


.btn-primary:hover {

    background:var(--forest);

}


.btn-secondary {

    border:2px solid white;
    color:white;

}


.btn-secondary:hover {

    background:white;
    color:var(--charcoal);

}
/* HEADER */

.header {

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    padding:20px 0;
    transition:.3s;
    background:transparent;
    
    }
        
    
    .nav-container {
    
    display:flex;
    align-items:center;
    justify-content:space-between;
    
    }
    
    
    .logo img {
    
    height:200px;
    width:auto;
    
    }
    
    
    .nav {
    
    display:flex;
    align-items:center;
    gap:30px;
    
    }
    
    
    .nav a {
    
    color:white;
    font-weight:600;
    
    }
    
    
    .menu-toggle {
    
    display:none;
    background:none;
    border:none;
    font-size:32px;
    color:white;
    
    }
    
    
    /* HERO */
    
    
    .hero {
    
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
    
    }
    
    
    .hero-image {
    
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    
    
    .hero-overlay {
    
    position:absolute;
    inset:0;
    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.45)
    );
    
    }
    
    
    .hero-content {
    
    position:relative;
    z-index:2;
    color:white;
    
    }
    
    
    .hero-content h1 {
    
    font-size:clamp(2.5rem,5vw,5rem);
    line-height:1.1;
    margin-bottom:25px;
    
    }
    
    
    .hero-content p {
    
    font-size:1.25rem;
    max-width:650px;
    margin-bottom:35px;
    
    }
    
    
    .hero-buttons {
    
    display:flex;
    gap:20px;
    
    }
/* FEATURED TRAILER */


.featured-grid {

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    
    }
    
    
    .featured-image img {
    
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    
    }
    
    
    .featured-content h2 {
    
    font-size:3rem;
    margin-bottom:20px;
    
    }
    
    
    .featured-content p {
    
    margin-bottom:30px;
    
    }
    
    
    
    .spec-grid {
    
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:35px;
    
    }
    
    
    .spec-grid div {
    
    background:var(--light-gray);
    padding:20px;
    border-radius:var(--radius);
    
    }
    
    
    .spec-grid strong {
    
    display:block;
    color:var(--forest);
    
    }
    
    
    .spec-grid span {
    
    font-size:1.1rem;
    
    }
      /* WHY CHOOSE */


.section-intro {

    max-width:700px;
    margin:20px auto 50px;
    text-align:center;
    
    }
    
    
    .why-section h2 {
    
    text-align:center;
    font-size:3rem;
    
    }
    
    
    
    .feature-grid {
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    
    }
    
    
    
    .feature-card {
    
    background:var(--light-gray);
    padding:35px;
    border-radius:var(--radius);
    transition:.3s;
    
    }
    
    
    .feature-card:hover {
    
    transform:translateY(-8px);
    box-shadow:var(--shadow);
    
    }
    
    
    
    .feature-card h3 {
    
    color:var(--forest);
    margin-bottom:15px;
    
    }
/* BUILD PROCESS */


.build-section {

    background:var(--charcoal);
    color:white;
    
    }
    
    
    .build-section h2 {
    
    text-align:center;
    font-size:3rem;
    
    }
    
    
    .timeline {
    
    max-width:900px;
    margin:60px auto 0;
    
    }
    
    
    
    .timeline-item {
    
    display:grid;
    grid-template-columns:90px 1fr;
    gap:30px;
    margin-bottom:45px;
    align-items:start;
    
    }
    
    
    
    .timeline-number {
    
    background:var(--clay);
    height:60px;
    width:60px;
    border-radius:50%;
    
    display:flex;
    align-items:center;
    justify-content:center;
    
    font-weight:700;
    font-size:1.2rem;
    
    }
    
    
    
    .timeline-item h3 {
    
    margin-bottom:10px;
    color:var(--sand);
    
    }
/* GALLERY */


.gallery-section {

    background:var(--light-gray);
    
    }
    
    
    .gallery-section h2 {
    
    text-align:center;
    font-size:3rem;
    
    }
    
    
    
    .gallery-grid {
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    
    }
    
    
    
    .gallery-item {
    
    overflow:hidden;
    border-radius:var(--radius);
    
    }
    
    
    
    .gallery-item img {
    
    width:100%;
    height:300px;
    object-fit:cover;
    transition:.4s;
    
    }
    
    
    
    .gallery-item:hover img {
    
    transform:scale(1.08);
    
    }
/* TESTIMONIALS */


.testimonials {

    background:white;
    
    }
    
    
    .testimonials h2 {
    
    text-align:center;
    font-size:3rem;
    margin-bottom:50px;
    
    }
    
    
    
    .testimonial-grid {
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    
    }
    
    
    
    .testimonial-card {
    
    background:var(--light-gray);
    padding:35px;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    
    }
    
    
    
    .testimonial-card p {
    
    font-size:1.1rem;
    font-style:italic;
    margin-bottom:25px;
    
    }
    
    
    
    .testimonial-card h4 {
    
    color:var(--clay);
    font-size:1.5rem;
    
    }
    
    
    
    .testimonial-card span {
    
    color:#666;
    
    }
/* QUOTE CTA */


.quote-section {

    background:
    linear-gradient(
    rgba(0,0,0,.55),
    rgba(0,0,0,.55)
    ),
    url("../images/img02.jpg");
    
    
    background-size:cover;
    background-position:center;
    
    padding:100px 0;
    
    text-align:center;
    color:white;
    
    }
    
    
    
    .quote-section h2 {
    
    font-size:3rem;
    margin-bottom:15px;
    
    }
    
    
    .quote-section p {
    
    font-size:1.3rem;
    margin-bottom:35px;
    
    }
/* FOOTER */


.footer {

    background:var(--charcoal);
    color:white;
    padding:70px 0 20px;
    
    }
    
    
    
    .footer-grid {
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
    
    }
    
    
    
    .footer-brand img {
    
    height:70px;
    margin-bottom:20px;
    
    }
    
    
    
    .footer h3 {
    
    color:var(--sand);
    margin-bottom:20px;
    
    }
    
    
    
    .footer-links a {
    
    display:block;
    margin-bottom:10px;
    color:white;
    
    }
    
    
    
    .footer-bottom {
    
    border-top:1px solid rgba(255,255,255,.2);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
    
    }
/* QUOTE FORM */


.quote-form {

    max-width:600px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:20px;
    
    }
    
    
    
/* QUOTE FORM */

.quote-form {

    max-width:650px;
    margin:40px auto;
    display:flex;
    flex-direction:column;
    gap:18px;
    
    }
    
    
    
    .quote-form input,
    .quote-form textarea,
    .quote-form select {
    
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:1rem;
    font-family:inherit;
    
    }
    
    
    
    .quote-form textarea {
    
    height:160px;
    resize:vertical;
    
    }
    
    
    
    .quote-form label {
    
    font-weight:700;
    color:var(--forest);
    margin-top:10px;
    
    }
    
    
    
    .quote-form button {
    
    margin-top:20px;
    
    }
        
    padding:15px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:1rem;
    
    }
    
    
    
    .quote-form textarea {
    
    height:150px;
    
    }
/* TRAILER PAGE */

/* card  */


.spec-grid div {
    background:white;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

/*card  */

.trailer-hero {

    height:80vh;
    position:relative;
    display:flex;
    align-items:center;
    
    }
    
    
    .trailer-hero img {
    
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    
    
    
    .trailer-hero .hero-content {
    
    position:relative;
    z-index:2;
    
    }
/* ADVENTURE JOURNAL */


.journal-hero {

    height:75vh;
    position:relative;
    display:flex;
    align-items:center;
    
    }
    
    
    .journal-hero img {
    
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    
    
    
    .journal-grid {
    
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    
    }
    
    
    
    .journal-card {
    
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:var(--shadow);
    
    }
    
    
    
    .journal-card img {
    
    width:100%;
    height:250px;
    object-fit:cover;
    
    }
    
    
    
    .journal-card div {
    
    padding:25px;
    
    }
    
    
    
    .journal-card h3 {
    
    margin-bottom:15px;
    color:var(--forest);
    
    }
/* ABOUT PAGE */


.about-hero {

    height:75vh;
    position:relative;
    display:flex;
    align-items:center;
    
    }
    
    
    
    .about-hero img {
    
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    
    
    
    .about-content {
    
    max-width:850px;
    
    }
    
    
    
    .about-content p {
    
    font-size:1.15rem;
    margin-bottom:25px;
    
    }
    
    
    
    .about-dark {
    
    background:var(--charcoal);
    color:white;
    
    }
    
    
    
    .two-column {
    
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    
    }
    
    
    
    .two-column img {
    
    border-radius:12px;
    
    }
/* ABOUT PHILOSOPHY CARDS */

.about-dark .feature-card {

    background: var(--light-gray);
    color: var(--charcoal);

}


.about-dark .feature-card h3 {

    color: var(--forest);

}


.about-dark .feature-card p {

    color: var(--charcoal);

}
/* FAQ PAGE */


.faq-hero {

    height:60vh;
    background:
    
    linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.45)
    ),
    
    url("../images/gallery01.jpg");
    
    background-size:cover;
    background-position:center;
    
    display:flex;
    align-items:center;
    
    color:white;
    
    }
    
    
    
    .faq-container {
    
    max-width:850px;
    
    }
    
    
    
    .faq-item {
    
    background:var(--light-gray);
    padding:30px;
    margin-bottom:25px;
    border-radius:12px;
    
    }
    
    
    
    .faq-item h3 {
    
    color:var(--forest);
    margin-bottom:15px;
    
    }
    
    
    
    .faq-item p {
    
    color:var(--charcoal);
    
    }
/* ---------- FOOTER ---------- */

.footer{

    background:#1f2d2a;
    color:white;
    padding:60px 0 25px;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;

}

.footer-logo{

    max-width:180px;
    margin-bottom:20px;

}

.footer h3{

    margin-bottom:15px;
    color:#C96A24;

}

.footer ul{

    list-style:none;

}

.footer li{

    margin-bottom:10px;

}

.footer a{

    color:white;

}

.footer a:hover{

    color:#C96A24;

}

.copyright{

    text-align:center;
    margin-top:40px;
    border-top:1px solid rgba(255,255,255,.2);
    padding-top:20px;
    font-size:.9rem;

}
.nav a.active {

    color: var(--clay);
    font-weight: 700;
    border-bottom: 2px solid var(--clay);
    padding-bottom: 4px;

}
/* TRAILER MODELS */


.trailer-grid {

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    
    }
    
    
    
    .trailer-card {
    
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    padding-bottom:25px;
    
    }
    
    
    
    .trailer-card img {
    
    width:100%;
    height:260px;
    object-fit:cover;
    
    }
    
    
    
    .trailer-card h2 {
    
    padding:20px 20px 10px;
    
    color:var(--forest);
    
    }
    
    
    
    .trailer-card p,
    .trailer-card ul {
    
    padding:0 20px;
    
    }
    
    
    
    .trailer-card li {
    
    margin-bottom:8px;
    
    }
    
    
    
    .trailer-card .btn {
    
    margin:20px;
    
    }
/* TRAILER MODEL PAGES */


.model-hero {

    height:70vh;
    position:relative;
    display:flex;
    align-items:center;
    color:white;
    
    }
    
    
    .model-hero img {
    
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    
    }
    
    
    
    .feature-list {
    
    margin:20px 0;
    padding-left:25px;
    
    }
    
    
    
    .feature-list li {
    
    margin-bottom:12px;
    
    }
    
    
    
    .spec-table {
    
    width:100%;
    border-collapse:collapse;
    
    }
    
    
    
    .spec-table td {
    
    padding:15px;
    border-bottom:1px solid #ddd;
    
    }
    .banner-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 28px;
        border: 2px solid white;
        border-radius: 30px;
        color: white;
        background: rgba(0,0,0,0.25);
        text-decoration: none;
        font-weight: 600;
        transition: .3s ease;
    }
    
    .banner-btn:hover {
        background: white;
        color: #2f4f2f;
    }
/* Section backgrounds */

.specs-section {
    background:#f3eee3;
}


.options-section {
    background:#f3eee3;
}


.quote-section {
    background:var(--forest);
    color:white;
}
/


