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

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 10000;
    padding: 15px 0;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #007bff;
    color: white;
}

.cookie-btn.accept:hover {
    background: #0056b3;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn.decline:hover {
    background: white;
    color: #333;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: #4a90e2;
    letter-spacing: 1px;
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #4a90e2;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./assets/bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
    color: white;
}

.hero-intro {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.hero-balance {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.hero-why-section {
    text-align: center;
    max-width: 1000px;
    margin: 40px auto;
}

.hero-why-section h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: white;
    font-weight: 600;
}

.hero-features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.hero-features-list li {
    margin-bottom: 20px;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.hero-features-list li:before {
    content: "•";
    color: #4a90e2;
    position: absolute;
    left: 0;
    font-size: 22px;
    top: -2px;
}

.hero-closing {
    font-size: 18px;
    margin: 30px auto;
    max-width: 1000px;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

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

.about h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.about p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.about-why-section {
    margin: 50px 0;
}

.about-why-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

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

.about-features-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.8;
    font-size: 16px;
}

.about-features-list li:before {
    content: "•";
    color: #4a90e2;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

/* Hotels Section */
.hotels {
    padding: 80px 0;
    background: white;
}

.hotels h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.hotels-intro {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

.hotels-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.hotel-card {
    background: #e3f2fd;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

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

.hotel-content {
    padding: 25px;
    position: relative;
    padding-bottom: 60px;
}

.hotel-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.hotel-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hotel-features {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.hotel-arrow {
    position: absolute;
    bottom: 15px;
    right: 25px;
    background: #4a90e2;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-arrow:hover {
    background: #357abd;
    transform: scale(1.1);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #e3f2fd;
    padding: 40px 30px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease;
    padding-bottom: 70px;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4a90e2;
    border-radius: 8px;
}

.feature-icon img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-arrow {
    position: absolute;
    bottom: 15px;
    right: 25px;
    background: #4a90e2;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-arrow:hover {
    background: #357abd;
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 25px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-intro,
    .hero-balance,
    .hero-closing {
        font-size: 16px;
    }
    
    .hero-why-section h2 {
        font-size: 26px;
    }
    
    .about h2,
    .hotels h2,
    .features h2 {
        font-size: 32px;
    }
    
    .about-why-section h3 {
        font-size: 26px;
    }
    
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-intro,
    .hero-balance,
    .hero-closing {
        font-size: 14px;
    }
    
    .hero-why-section h2 {
        font-size: 22px;
    }
    
    .hero-features-list li {
        font-size: 14px;
    }
    
    .about h2,
    .hotels h2,
    .features h2 {
        font-size: 28px;
    }
    
    .about-why-section h3 {
        font-size: 22px;
    }
    
    .hotels-grid {
        gap: 20px;
    }
    
    .hotel-content,
    .feature-card {
        padding: 20px;
        padding-bottom: 60px;
    }
    
    .about,
    .hotels,
    .features {
        padding: 60px 0;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav a {
        font-size: 12px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

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

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

.hero-content,
.about,
.hotels,
.features {
    animation: fadeInUp 0.8s ease-out;
}

/* Focus states for accessibility */
.cta-button:focus,
.hotel-arrow:focus,
.feature-arrow:focus,
.cookie-btn:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
}

.nav a:focus {
    outline: 2px solid #4a90e2;
    outline-offset: 2px;
    border-radius: 4px;
}