/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0077BE, #0096A4);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    color: #FFFFFF;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0, 119, 190, 0.7), rgba(0, 150, 164, 0.7)), url('img/photo-1597799119438-cbf326f268b9.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
}

.hero-content h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0077BE;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #FF7F50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    color: #0077BE;
    margin-bottom: 50px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: #0077BE;
    padding: 20px 20px 10px;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #666;
}

/* Special Offers */
.special-offers {
    padding: 80px 0;
    background: linear-gradient(135deg, #0096A4, #0077BE);
    color: #FFFFFF;
}

.special-offers h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.offer {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.offer img {
    width: 50%;
    height: 300px;
    object-fit: cover;
}

.offer-content {
    padding: 40px;
    width: 50%;
}

.offer-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.offer-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0077BE;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #FF7F50;
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 119, 190, 0.8), rgba(0, 150, 164, 0.8)), url('img/photo-1609156075736-5adea207d7db.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-header h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Attractions Page */
.attractions {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.attraction-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.attraction-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.attraction-info {
    padding: 25px;
}

.attraction-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #0077BE;
    margin-bottom: 15px;
}

.attraction-info p {
    color: #666;
    margin-bottom: 20px;
}

.attraction-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.attraction-info ul li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.attraction-info ul li:before {
    content: "•";
    color: #FF7F50;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Tickets Page */
.tickets {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ticket-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ticket-card:hover {
    transform: translateY(-10px);
}

.ticket-card.featured {
    border: 3px solid #FFD700;
    transform: scale(1.05);
}

.ticket-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ticket-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #0077BE;
    margin-bottom: 20px;
}

.price {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF7F50;
    margin-bottom: 25px;
}

.ticket-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.ticket-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.ticket-card ul li:before {
    content: "✓";
    color: #32CD32;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 10px;
}

.special-offers-section h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    color: #0077BE;
    margin-bottom: 50px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.offer-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #0077BE;
    margin-bottom: 20px;
}

.offer-card p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.booking-info {
    padding: 100px 0;
    background: linear-gradient(135deg, #0077BE, #0096A4);
    text-align: center;
    color: #FFFFFF;
}

.booking-info h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-info p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Plan Visit Page */
.visit-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #0077BE;
    margin-bottom: 20px;
}

.info-card ul {
    list-style: none;
}

.info-card ul li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    color: #555;
}

.info-card ul li:before {
    content: "•";
    color: #FF7F50;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.info-card p {
    color: #555;
    margin-bottom: 10px;
}

.map-section {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-section h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    color: #0077BE;
    margin-bottom: 20px;
    text-align: center;
}

.map-placeholder {
    text-align: center;
}

.map-placeholder img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #666;
    font-style: italic;
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    color: #0077BE;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    color: #0096A4;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #0077BE;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0096A4;
    outline: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0077BE, #0096A4);
    color: #FFFFFF;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 10px 0;
}

/* Animations */
@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(20px); }
    100% { transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .offer {
        flex-direction: column;
    }
    
    .offer img,
    .offer-content {
        width: 100%;
    }
    
    .offer img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .features h2,
    .special-offers h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.3rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-wrap: wrap;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .features h2,
    .special-offers h2 {
        font-size: 1.8rem;
    }
    
    .feature-grid,
    .attraction-grid,
    .ticket-options,
    .info-grid,
    .offer-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-card.featured {
        transform: scale(1);
    }
    
    .ticket-card.featured:hover {
        transform: translateY(-10px);
    }
}