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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #e53e3e;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #e53e3e;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e53e3e;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

 /*   background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)); */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #FFC9DD 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.icon-item {
    width: 60px;
    height: 60px;
    background: rgba(229, 62, 62, 0.9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.cta-button {
    padding: 15px 40px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    background: #c53030;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(229, 62, 62, 0.3);
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.hero-img-1 {
    top: 10%;
    left: 5%;
    width: 35%;
    height: 45%;
	background-image: url("./visit-capital-santiago-chile.jpg");
    animation: slideInLeft 1s ease;
}

.hero-img-2 {
    top: 10%;
    right: 5%;
    width: 35%;
    height: 45%;
	background-image: url("./atacama-desert-landscape.jpg");
    animation: slideInRight 1s ease;
}

.hero-img-3 {
    bottom: 10%;
    left: 5%;
    width: 35%;
    height: 45%;
	background-image: url("./famous-vineyards-chile.jpg");
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-img-4 {
    bottom: 10%;
    right: 5%;
    width: 35%;
    height: 45%;
	background-image: url("./patagonia-landscapes-chile.jpg");
    animation: slideInRight 1s ease 0.2s both;
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    font-size: 3rem;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

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

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

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

.destination-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 200px;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.destination-card.large-card {
    grid-column: span 2;
    height: 250px;
}

.destination-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

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

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Atacama Images */
.geysers-img {
	background-image: url("./geysers-atacama-tours.jpg");
}

.iquique-img {
	background-image: url("./iquique-chile-tour.jpg");
}

.atacama-img {
	background-image: url("./atacama-lagoon-tours.jpg");
}

.astrotour-img {
	background-image: url("./astronomical-tour-atacama.jpg");
}

/* Santiago Images */
.santiago-img {
	background-image: url("./santiago-city-tour-chile.jpg");	
}

.casablanca-img {
	background-image: url("./chile-casablanca-valley-tours.jpg");	
}

.inca-lake-img {
	background-image: url("./incas-lake-chile.jpg");
}
.aconcagua-img {
	background-image: url("./aconcagua-valley-tours-errazuriz.jpg");
}

.colchagua-img {
	background-image: url("./colchagua-valley-tours.jpg");
}
.valparaiso-img {
	background-image: url("./tours-valparaiso-vina-mar-chile.jpg");
}

/* Vineyard Images */
.hotsprings-img {
	background-image: url("./hot-springs-chile.jpg");
}

.puconsaltos-img {
	background-image: url("./3-saltos-pucon.jpg");
}

.rafting-img {
	background-image: url("./rafting-pucon-chile.jpg");
}

.caburga-img {
	background-image: url("./caburga-eyes-chile.jpg");
}

.villarrica-img {
	background-image: url("./villarrica-chile.jpg");
}
.lakecaburga-img {
	background-image: url("./caburga-lake-chile.jpg");
}
.corralco-img {
	background-image: url("./corralco-risort-chile.jpg");
}
/* Patagonia Images */


.puntaarenas-img {
	background-image: url("./city-tour-punta-arenas.jpg");
}

.milodon-img {
	background-image: url("./milodon-caverna.jpg");
}
.torrespaine-img {
	background-image: url("./torres-del-paine-chile.jpg");
}

.greyglacier-img {
	background-image: url("./glacier-grey-chile.jpg");
}

.marblechapels-img {
	background-image: url("./marble-chapels-tour.jpg");
}

.peritomoreno-img {
	background-image: url("./perito-moreno-patagonia.jpg");
}

.patagonialandscapes-img {
	background-image: url("./beautiful-tours-patagonia.jpg");
}
/* Other Destination Images */

.templosantiago-img {
	background-image: url("./bahai-temple-santiago.jpg");
}

.snowparks-img {
	background-image: url("./snow-parks-santiago.jpg");
}

.chillan-img {
	background-image: url("./chillan-hot-springs.jpg");
}

.alfonso-img {
	background-image: url("./chilean-risorts-alfonso.jpg");
}

.experiencechile-img {
	background-image: url("./chilean-experiences.jpg");
}
/* Mountains Section Specific */
.atacama-section {
    background: linear-gradient(135deg, #ad7878 10%, #ff7512 100%);
    color: white;
}

.atacama-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.atacama-section .section-icon,
.atacama-section h2 {
    color: white;
}

/* Santiago Section */

.santiago-section {
    background: linear-gradient(135deg, #214F4C, #26FFF7);
    color: white;
}

.santiago-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.santiago-section .section-icon,
.santiago-section h2 {
    color: white;
}

/* south Section */
.south-section {
    background: linear-gradient(135deg, #74eb1e 10%, #cdebb7 100%);
	
    color: white;
}

.south-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.south-section .section-icon,
.south-section h2 {
    color: white;
}

/* City Section */
.patagonia-section {
    background: linear-gradient(135deg, #0f114c, #a7d1fc);
    color: white;
}

.patagonia-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.patagonia-section .section-icon,
.patagonia-section h2 {
    color: #white;
}

/* Other Section */
.others-section {
    background: linear-gradient(135deg, #667eea 0%, #FFC9DD 100%);
    color: white;
}

.others-section .section-text {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.others-section .section-icon,
.others-section h2 {
    color: white;
}

/* Footer */
.footer {
    background: #2d3748;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #e53e3e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c53030;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-icons {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .icon-item {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-images {
        opacity: 0.3;
    }
    
    .hero-image {
        width: 45% !important;
        height: 30% !important;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-card.large-card {
        grid-column: span 1;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-icons {
        gap: 0.5rem;
    }
    
    .icon-item {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-icon {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #e53e3e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c53030;
}

/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 1000;
}

.whatsapp-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
