:root {
    --primary-color: #F8F9FA; /* Changed from coral orange to light background */
    --secondary-color: #2C3E50;
    --light-color: #F8F9FA;
    --dark-color: #1A1A1A;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/van-hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hero-title-group {
    padding-top: 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-top: auto;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.hero-cta h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta p {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.contact-button {
    background-color: rgba(44, 62, 80, 0.85);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-button:hover {
    background-color: rgba(44, 62, 80, 1);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.features {
    margin-top: 2rem;
}

.features ul {
    list-style-position: inside;
    margin: 1rem 0;
    columns: 2;
    gap: 2rem;
}

.features li {
    margin-bottom: 0.5rem;
}

.accessories-note {
    margin-top: 2rem;
    font-style: italic;
}

/* Pricing Section */
.pricing {
    padding: 4rem 0;
    background-color: white;
    text-align: center;
}

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

.price-item {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* Added subtle shadow */
}

.price-item:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color); /* Changed from primary color */
    margin: 1rem 0;
}

.price-detail {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: var(--light-color);
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox styles for larger image view */
.gallery-item img:active {
    cursor: zoom-in;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta h2 {
        font-size: 1.5rem;
    }
    
    .contact-details {
        flex-direction: column;
    }
    
    .contact-button {
        width: 100%;
        text-align: center;
    }

    .features ul {
        columns: 1;
    }

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