/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

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



/* Hero Section */
.hero {
    height: 57.5vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('Aerial_view_of_southern_Kelowna,_BC.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.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" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #e6ad9a;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 173, 154, 0.3);
    text-decoration: none;
    min-height: 44px;
    min-width: 44px;
}

.cta-button:hover {
    background: #c67a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 140, 115, 0.4);
}

/* Gear Section */
.gear-section {
    padding: 80px 0;
    background: #F0EDE6;
}

.gear-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e6ad9a;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 4rem;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gear-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.gear-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gear-icon {
    width: 80px;
    height: 80px;
    background: #e6ad9a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.gear-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e6ad9a;
}

.gear-item p {
    color: #64748b;
    line-height: 1.6;
}

.features-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
}

.features-section .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e6ad9a;
    font-weight: 500;
    font-size: 1.1rem;
}

.features-section .feature i {
    font-size: 1.3rem;
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: #F0EDE6;
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e6ad9a;
}

.location-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .location-grid {
        max-width: 100%;
        gap: 1rem;
    }
}

.location-item {
    background: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    color: #e6ad9a;
    font-weight: 500;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.location-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #d99a6b;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #e6ad9a;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.about-text p {
    font-size: 1.1rem;
    color: #F0EDE6;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e6ad9a;
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.polaroid {
    background: white;
    padding: 15px 15px 30px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    max-width: 250px;
}

.polaroid:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.polaroid img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

.polaroid-caption {
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    color: #d99a6b;
    margin-top: 15px;
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #F0EDE6;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e6ad9a;
}

.reviews-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.review-count {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e6ad9a;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.review-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.reviewer {
    font-weight: 600;
    color: #e6ad9a;
}

/* Contact Section */
.contact-section {
    padding: 70px 0;
    background: #e6ad9a;
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #d98c73;
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: #d98c73;
    color: #F0EDE6;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .gear-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gear-item {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .features-section {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        align-items: center;
        text-align: center;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .gear-section h2,
    .about-text h2,
    .reviews-section h2,
    .contact-section h2,
    .location-section h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .section-subtitle {
        padding: 0 1rem;
    }
    
    .location-grid {
        padding: 0 1rem;
        gap: 0.8rem;
        justify-content: space-between;
    }
    
    .location-item {
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 0;
    }
    
    .location-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .polaroid {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 70vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .gear-item {
        padding: 1.5rem 1rem;
    }
    
    .review-card {
        padding: 1.5rem 1rem;
    }
    
    .gear-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .polaroid {
        max-width: 180px;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .location-item {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        text-align: center;
    }
    
    .location-grid {
        gap: 0.8rem;
    }
    
    .features-section .feature {
        font-size: 1rem;
    }
}

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

.gear-item,
.review-card {
    animation: fadeInUp 0.6s ease-out;
}

.gear-item:nth-child(2) {
    animation-delay: 0.1s;
}

.gear-item:nth-child(3) {
    animation-delay: 0.2s;
}

.gear-item:nth-child(4) {
    animation-delay: 0.3s;
}

.gear-item:nth-child(5) {
    animation-delay: 0.4s;
}

.gear-item:nth-child(6) {
    animation-delay: 0.5s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 