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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F5F1E8;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4DD0E1;
    color: white;
}

.btn-primary:hover {
    background-color: #26C6DA;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #4DD0E1;
    border: 2px solid #4DD0E1;
}

.btn-secondary:hover {
    background-color: #4DD0E1;
    color: white;
}

/* Header */
.header {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo-icon {
    border-radius: 50%;
}

.brand-name {
    color: #2C2C2C;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F5F1E8 0%, #E8F5F1 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    order: 1;
}

.hero-image {
    order: 2;
}

.hero-img,
.gear-img,
.parties-img,
.location-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.hero-title {
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.centered-section {
    text-align: center;
}

.centered-section .container > * {
    text-align: center;
}

.centered-section .gear-content,
.centered-section .parties-content,
.centered-section .location-content {
    text-align: left;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #2C2C2C;
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.2rem;
}

/* About Section */
.about {
    background-color: white;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.activity-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.activity-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.activity-card h3 {
    color: #2C2C2C;
    margin-bottom: 15px;
}

.activity-card p {
    color: #666;
    font-size: 1rem;
}

/* Products Section */
.products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: #F5F1E8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.product-card h3 {
    padding: 20px 20px 10px;
    color: #2C2C2C;
}

.product-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 15px;
}

.product-price {
    padding: 0 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #4DD0E1;
    margin-bottom: 20px;
}

.product-card button {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Gear Rental Section */
.gear-rental {
    background-color: #4DD0E1;
    color: white;
}

.gear-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.gear-rental .section-title {
    color: white;
    text-align: left;
    margin-bottom: 20px;
}

.gear-rental h2 {
    color: white;
    margin-bottom: 20px;
}

.gear-rental p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.gear-list {
    list-style: none;
    margin-bottom: 30px;
}

.gear-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    color: rgba(255,255,255,0.9);
}

.gear-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: white;
    font-weight: bold;
}

/* Private Parties Section */
.parties-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.party-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 1.5rem;
}

/* Location & Hours Section */
.location-hours {
    background-color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-item {
    margin-bottom: 30px;
}

.info-item strong {
    color: #2C2C2C;
    font-size: 1.2rem;
}

.info-item p {
    color: #666;
    margin-top: 10px;
}

/* Contacts Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-item {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h3 {
    color: #2C2C2C;
    margin-bottom: 15px;
}

.contact-item a {
    color: #4DD0E1;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #2C2C2C;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.footer-links a:hover {
    color: #4DD0E1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container,
    .gear-content,
    .parties-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .products-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .activity-card,
    .contact-item {
        padding: 30px 20px;
    }
}