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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1C1C1C;
    background-color: #FAFAF8;
}

/* Color Variables */
:root {
    --onyx: #1C1C1C;
    --sand: #D4B08A;
    --pearl: #F5E6D3;
    --background: #FAFAF8;
    --white: #FFFFFF;
    --text-dark: #1C1C1C;
    --text-light: #666666;
    --border: #E5E5E5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--onyx);
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.65;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    background: var(--white);
    padding: 24px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-icon {
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--onyx);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--onyx);
    color: var(--white);
    border-color: var(--onyx);
}

.btn-primary:hover {
    background: transparent;
    color: var(--onyx);
}

.btn-secondary {
    background: var(--sand);
    color: var(--onyx);
    border-color: var(--sand);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--sand);
    border-color: var(--sand);
}

/* Sections */
section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--pearl) 0%, var(--background) 100%);
    padding: 120px 0;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.hero-content {
    max-width: 800px;
}

.hero-content .hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--onyx);
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--sand), var(--pearl));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--onyx);
    font-size: 1.1rem;
}

/* Intro Section */
.intro {
    background: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 32px;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
}

.service-card {
    text-align: center;
    padding: 40px 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--pearl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--onyx);
}

.service-card p {
    font-size: 0.95rem;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.destination-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 32px;
}

.destination-content h3 {
    margin-bottom: 16px;
}

.destination-content p {
    font-size: 0.95rem;
}

/* VIP Experiences */
.vip-experiences {
    background: var(--white);
}

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

.vip-text h2 {
    margin-bottom: 24px;
}

.vip-text p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.vip-features {
    list-style: none;
}

.vip-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-light);
}

.vip-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--sand);
    font-weight: bold;
}

.vip-image {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 32px;
}

.product-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.product-content p {
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-price {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--onyx);
    margin-bottom: 24px;
}

.product-card .btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Membership Grid */
.membership {
    background: var(--background);
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.membership-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.membership-card.featured {
    border: 2px solid var(--sand);
    transform: scale(1.05);
}

.membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.membership-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--onyx);
    margin-bottom: 32px;
}

.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.membership-features {
    list-style: none;
    text-align: left;
}

.membership-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.membership-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sand);
    font-weight: bold;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--pearl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-item h3 {
    margin-bottom: 16px;
}

.feature-item p {
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 48px;
}

.testimonial-card {
    padding: 40px;
    background: var(--background);
    border-radius: 16px;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testimonial-card cite {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contacts */
.contacts {
    background: var(--background);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    margin-bottom: 16px;
    color: var(--onyx);
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--sand);
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--onyx);
}

/* Footer */
.footer {
    background: var(--onyx);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand .brand-name {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: var(--sand);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
    color: var(--sand);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content .hero-title {
        font-size: 3rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .vip-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid,
    .destinations-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 56px 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .membership-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 24px;
    }
}