/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%; /* Increased height to allow for cropping */
    object-fit: cover;
    object-position: center 35%; /* Adjusted to crop more from bottom */
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    color: var(--text-light);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

.hero p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xl);
}

.hero-buttons .btn {
    margin: 0 var(--spacing-sm);
    background: var(--background-light);
    color: var(--text-primary);
}

.hero-buttons .btn:hover {
    background: var(--background-off-white);
}

/* Who Are We Section */
.who-we-are {
    padding: var(--spacing-2xl) 0;
    background: var(--background-light);
}

.who-we-are h2 {
    text-align: center;
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text p {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    color: var(--text-primary);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

/* Services Section */
.services {
    text-align: center;
}

.services h2 {
    font-size: var(--font-size-2xl);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    justify-items: center;
}

/* Featured Collections Section */
.featured-collections {
    background: var(--background-off-white);
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    justify-items: center;
}

.gallery-item {
    flex: 1 1 calc(33% - 20px);
    margin: var(--spacing-sm);
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.gallery-item img {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    transition: var(--transition-base);
}

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

/* Testimonials Section */
.testimonials {
    text-align: center;
}

.testimonial-carousel {
    max-width: 800px;
    margin: auto;
}

.testimonial p {
    font-size: var(--font-size-xl);
    font-style: italic;
}

.testimonial h4 {
    margin-top: var(--spacing-sm);
    font-weight: normal;
    color: var(--text-secondary);
}

/* CTA Section */
.cta {
    background: url('images/cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cta .container {
    position: relative;
    z-index: 1;
}

/* Medium Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-item img {
        max-height: 200px;
    }
}

/* Large Screens */
@media (min-width: 1025px) {
    .gallery-item img {
        max-height: 250px;
    }
}
