/* 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 */
header {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 300;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Main content */
main {
    padding: 3rem 0;
}

.hero {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.hero-image {
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero h2 {
    color: #2c5282;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Hotel grid */
.hotels-overview {
    margin-bottom: 3rem;
}

.hotels-overview h3 {
    text-align: center;
    color: #2c5282;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hotel-card h4 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hotel-card h4 a {
    color: inherit;
    text-decoration: none;
}

.hotel-card h4 a:hover {
    text-decoration: underline;
}

.hotel-card p {
    margin-bottom: 1rem;
    color: #666;
}

.price {
    font-weight: bold;
    color: #e53e3e;
    font-size: 1.1rem;
}

/* About and Contact sections */
.about-malaga,
.contact {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.about-malaga h3,
.contact h3 {
    color: #2c5282;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact a {
    color: #3182ce;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: #2d3748;
    color: #cbd5e0;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: #cbd5e0;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Hotel details page */
.hotel-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.hotel-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.hotel-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hotel-gallery img:hover {
    transform: scale(1.05);
}

.hotel-info h3, .hotel-info h4 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.hotel-info h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

.hotel-info h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    font-weight: 400;
}

.hotel-info ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.hotel-info li {
    margin-bottom: 0.5rem;
}

/* Privacy policy page */
.privacy-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    line-height: 1.8;
}

.privacy-content h2 {
    color: #2c5282;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.privacy-content h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.privacy-content h4 {
    color: #2c5282;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* Casino hotel disclaimer */
.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
}

/* Responsive design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        padding: 0.3rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        height: 200px;
    }
    
    .hotel-grid {
        grid-template-columns: 1fr;
    }
    
    .hotel-gallery {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content img {
        height: 200px;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
    
    .hotel-details {
        padding: 1.5rem;
    }
}
