* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: white;
}

.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section - Updated colors */
.hero {
    background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(26, 26, 26, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 26, 26, 0.4) 0%, transparent 50%);
}

.mountain-silhouette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 30%, #ff8c42 70%, #d2691e 100%);
    clip-path: polygon(0% 100%, 15% 60%, 25% 70%, 35% 45%, 50% 55%, 65% 30%, 80% 40%, 90% 20%, 100% 35%, 100% 100%);
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.hero-content {
    z-index: 10;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.5));
}

.tagline {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.follow-button {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin: 0 15px 15px 0;
    display: inline-block;
    text-decoration: none;
}

.follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #ff9a56, #ff7a47);
}

.stats-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(255, 140, 66, 0.8);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Instagram Feed Section */
.instagram-feed {
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 4rem 2rem;
    display: block;
    align-items: flex-start;
}

.feed-header {
    text-align: center;
    margin-bottom: 4rem;
    width: 100%;
}

.feed-title {
    font-size: 3rem;
    color: #ff8c42;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.feed-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
}

.post-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,140,66,0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,107,53,0.2);
    border-color: rgba(255,140,66,0.4);
}

.post-content {
    padding: 20px;
    flex: 1;
}

.post-location {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
    color: #ff8c42;
}

.post-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.post-description {
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
}

.post-engagement {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    opacity: 0.7;
    flex-wrap: wrap;
}

.post-image {
    width: 100%;
    height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    border-radius: 0 0 20px 20px;
    background-color: #1a1a1a;
}

.post-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    pointer-events: none;
}

/* Camper Rental Section */
.camper-rental {
    background: linear-gradient(135deg, #2d4a5a 0%, #ff8c42 100%);
    position: relative;
    padding: 4rem 2rem;
}

.camper-content {
    text-align: center;
    max-width: 1000px;
    background: rgba(0,0,0,0.4);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.1);
}

.camper-title {
    font-size: 3rem;
    color: #ff8c42;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.camper-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.camper-features {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
    opacity: 0.9;
    background: rgba(255,140,66,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255,140,66,0.2);
}

.camper-gallery {
    margin: 3rem 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.main-image {
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-image img:hover {
    transform: scale(1.05);
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail.active {
    border-color: #ff8c42;
    opacity: 1;
    transform: scale(1.1);
}

.rental-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.rental-button {
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.rental-button.primary {
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.rental-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.rental-button.secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.rental-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-button {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 15px 35px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.social-button:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff8c42, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.floating-social-link:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Animations */
.floating-icon {
    position: absolute;
    color: rgba(255, 140, 66, 0.6);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-3deg); }
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #ff8c42);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo { max-width: 250px; }
    .feed-title, .camper-title, .cta-title { font-size: 2rem; }
    .posts-grid { grid-template-columns: 1fr; }
    .stats-container { gap: 20px; }
    .floating-social { display: none; }
    .social-buttons, .rental-actions { flex-direction: column; align-items: center; }
    .post-engagement { gap: 15px; }
    
    .post-image {
        height: 200px;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .camper-content {
        padding: 2rem;
    }
    
    .camper-features {
        font-size: 1rem;
        line-height: 1.8;
    }
}