/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0077BE 0%, #0096A4 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: white;
    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: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

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-1721291155785-6b0f6ea3e7a1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.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;
    padding: 15px 30px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 50px;
    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: white;
}

.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: white;
    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 0%, #32CD32 100%);
    color: white;
}

.special-offers h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.offer-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.offer-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.offer-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.offer-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0077BE;
    padding: 12px 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #FF7F50;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 119, 190, 0.8), rgba(0, 150, 164, 0.8)), 
                url('img/photo-1723642502315-1b94cf8cd0d8.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.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: white;
    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: 5px 0;
    border-bottom: 1px dashed #eee;
}

.attraction-info ul li:last-child {
    border-bottom: none;
}

.attraction-info ul li strong {
    color: #0077BE;
}

/* Tickets Page */
.tickets {
    padding: 80px 0;
    background-color: white;
}

.ticket-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.ticket-card {
    background: linear-gradient(135deg, #0077BE 0%, #0096A4 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.ticket-card.featured {
    transform: scale(1.05);
    border: 3px solid #FFD700;
}

.ticket-card.featured::before {
    content: "BEST VALUE";
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #FFD700;
    color: #0077BE;
    padding: 5px 30px;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

.ticket-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #FFD700;
}

.ticket-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.ticket-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.ticket-card ul li::before {
    content: "✓";
    margin-right: 10px;
    color: #32CD32;
    font-weight: bold;
}

.ticket-card .btn {
    background-color: #FFD700;
    color: #0077BE;
    width: 100%;
    padding: 15px;
}

.ticket-card .btn:hover {
    background-color: #FF7F50;
}

.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-grid .offer-card {
    flex-direction: column;
}

.offer-grid .offer-card img {
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 25px;
}

.offer-content h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0077BE;
}

.offer-tag {
    display: inline-block;
    background-color: #FF7F50;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.booking-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #32CD32 0%, #0096A4 100%);
    color: white;
}

.booking-info h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0077BE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.step h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* 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;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-card h2 {
    font-family: 'Nunito', sans-serif;
    color: #0077BE;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.info-card h3 {
    font-family: 'Nunito', sans-serif;
    color: #0096A4;
    font-size: 1.3rem;
    margin: 20px 0 10px;
}

.hours-list,
.rules-list,
.packing-list {
    list-style: none;
}

.hours-list li,
.rules-list li,
.packing-list li {
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    justify-content: space-between;
}

.hours-list li span:first-child {
    font-weight: bold;
}

.note {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff8e1;
    border-left: 4px solid #FFD700;
    border-radius: 0 4px 4px 0;
}

.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0077BE 0%, #0096A4 100%);
    color: white;
}

.map-section h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.map-placeholder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 119, 190, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.map-overlay p {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: bold;
}

/* 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;
}

.contact-info h2,
.contact-form h2 {
    font-family: 'Nunito', sans-serif;
    color: #0077BE;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-family: 'Nunito', sans-serif;
    color: #0096A4;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    background-color: #0077BE;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0096A4;
    transform: translateY(-3px);
}

.map-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.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: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0077BE;
    outline: none;
}

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #32CD32 0%, #0096A4 100%);
    color: white;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #FFD700;
}

/* Footer */
footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .features h2,
    .special-offers h2,
    .page-header h1 {
        font-size: 2rem;
    }
    
    .ticket-card.featured {
        transform: scale(1);
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .feature-grid,
    .attraction-grid,
    .ticket-options,
    .info-grid,
    .offer-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}