/* 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: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
}

.logo h1 a {
    color: white;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background-color: rgba(255,255,255,0.2);
}

/* Hero Sections */
.hero, .hotel-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/benidorm-skyline.jpg');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.hero-content h2, .hotel-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Main Content Sections */
.intro, .hotel-description, .casino-intro, .waterpark-intro, .excursions-intro {
    padding: 3rem 0;
    background: white;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.intro h2, .hotel-description h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.intro p, .hotel-description p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Features Grid */
.features, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature, .feature-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #2c5aa0;
}

.feature h3, .feature-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Hotels Grid */
.hotels-grid {
    padding: 3rem 0;
    background: white;
    margin-bottom: 2rem;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hotel-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hotel-card h3 {
    padding: 1rem;
    color: #2c5aa0;
    font-size: 1.3rem;
}

.hotel-card p {
    padding: 0 1rem;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 1rem;
    transition: background-color 0.3s ease;
    font-weight: bold;
}

.btn:hover {
    background: #1e3a8a;
}

/* Special Offers */
.special-offers {
    padding: 3rem 0;
    background: #f8f9fa;
    margin-bottom: 2rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.offer-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-card h3 {
    padding: 1rem;
    color: #2c5aa0;
}

.offer-card p {
    padding: 0 1rem 1rem;
}

/* Hotel Gallery */
.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.hotel-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Casino and Waterpark Specific Styles */
.casino-hotel-card, .waterpark-hotel-card, .excursion-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.casino-hotel-card img, .waterpark-hotel-card img, .excursion-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.casino-features ul, .waterpark-features ul, .excursion-highlights ul {
    margin-top: 1rem;
    padding-left: 1rem;
}

.casino-features li, .waterpark-features li, .excursion-highlights li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Info Cards */
.info-grid, .tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-card, .tip-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.info-card h3, .tip-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../images/kontakt-benidorm.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin: 1rem 0;
}

.opening-hours h4 {
    color: #2c5aa0;
    margin: 1rem 0 0.5rem;
}

.service-list {
    text-align: left;
    list-style: none;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: #555;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.topic-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.expertise-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expertise-item {
    text-align: center;
    padding: 1rem;
}

.cta-phone {
    font-size: 1.3rem;
    color: #2c5aa0;
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 2rem;
}

/* Privacy Page Styles */
.privacy-content {
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    margin: 2rem 0;
}

.privacy-content h1 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: #2c5aa0;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-content h3 {
    color: #555;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.responsible-party, .contact-privacy {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.privacy-summary {
    background: #e3f2fd;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
    border-left: 4px solid #2c5aa0;
}

/* Footer */
footer {
    background: #2c5aa0;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h2, .hotel-hero h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .casino-hotel-card, .waterpark-hotel-card, .excursion-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .casino-hotel-card img, .waterpark-hotel-card img, .excursion-card img {
        height: 200px;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .phone-number {
        font-size: 1.2rem;
    }
    
    .cta-phone {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero, .hotel-hero, .contact-hero {
        padding: 2rem 0;
    }
    
    .hero-content h2, .hotel-hero h1 {
        font-size: 1.5rem;
    }
    
    .intro, .hotel-description {
        padding: 2rem 0;
    }
    
    .features, .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods, .topics-grid, .info-grid, .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    header, footer, .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: black;
        background: white;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* Accessibility improvements */
:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
