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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo h1 a {
    color: #2c5282;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2c5282;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #2c5282;
    color: white;
}

.btn-primary:hover {
    background: #2a4e7c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5282;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Local Information Section */
.local-info {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e6f3ff 100%);
}

.local-info h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c5282;
    font-weight: 600;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(44, 82, 130, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(44, 82, 130, 0.15);
}

.info-icon {
    font-size: 2.5rem;
    min-width: 60px;
    text-align: center;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.info-content {
    flex: 1;
}

.info-content h3 {
    color: #2c5282;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.info-content span {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.timezone, .day-of-week {
    background: #e6f3ff;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    color: #2c5282;
    font-weight: 600;
}

.temperature {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem !important;
}

.temp-range {
    color: #2c5282 !important;
    font-size: 1.3rem !important;
}

/* Weekly Forecast */
.weekly-forecast {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(44, 82, 130, 0.1);
    border: 1px solid rgba(44, 82, 130, 0.1);
}

.weekly-forecast h3 {
    color: #2c5282;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.forecast-item {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.forecast-item:hover {
    background: #e6f3ff;
    border-color: #2c5282;
    transform: translateY(-2px);
}

.forecast-day {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.forecast-icon {
    font-size: 2rem;
    margin: 0.5rem 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.forecast-temps {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.forecast-temps .high {
    color: #2c5282;
    font-size: 1.1rem;
}

.forecast-temps .low {
    color: #666;
    font-size: 0.9rem;
}

/* Weather Icons Animation */
.weather-icon {
    animation: weatherPulse 3s ease-in-out infinite;
}

@keyframes weatherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive adjustments - iPad and below (860px) */
@media (max-width: 860px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .info-icon {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .info-content p {
        font-size: 1.2rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .weekly-forecast {
        padding: 1.5rem;
    }
}

/* Location Map Section */
.location-map {
    padding: 4rem 0;
}

.location-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.map-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.travel-times h4 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.travel-times ul {
    list-style: none;
}

.travel-times li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Main Attractions Section */
.main-attractions {
    padding: 4rem 0;
    background: #f8fafc;
}

.main-attractions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.attraction-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.card-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: #666;
}

/* Featured Activities Section */
.featured-activities {
    padding: 4rem 0;
}

/* Reduce spacing when featured-activities follows content-section */
.content-section + .featured-activities {
    padding-top: 0rem;
}

.featured-activities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-3px);
}

.activity-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.activity-item p {
    color: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
}

/* Widget Separator Styles */
.widget-separator {
    height: 2px;
    margin: 20px 0;
}

.widget-separator.top {
    margin-bottom: 30px;
    background: linear-gradient(to right, transparent, #333, transparent);
    opacity: 0.3;
}

.widget-separator.bottom {
    margin-top: 30px;
    margin-bottom: 20px;
    background: transparent;
}

/* GetYourGuide Widget Container */
.getyourguide-widget-container {
    margin: 40px 0;
    padding: 0 20px;
}

.getyourguide-widget-container > div {
    max-width: 100%;
    overflow: hidden;
}

/* Travel Widget Container */
.travel-widget-container {
    margin-top: 40px;
    padding-top: 30px;
}

/* Responsive Design - iPad and below (860px) */
@media (max-width: 860px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text h2 {
        font-size: 1.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Mobile phones - medium to small (620px and below) */
@media (max-width: 620px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.2rem;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Additional mobile optimizations */
    .info-card {
        padding: 1rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.5rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .attractions-grid {
        gap: 1.5rem;
    }
}

/* Very small mobile phones (400px and below) */
@media (max-width: 400px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text h2 {
        font-size: 1.1rem;
    }
    
    .info-card {
        padding: 0.75rem;
    }
    
    .forecast-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.25rem;
    }
    
    .forecast-item {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .nav-logo h1 a {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c5282;
}

.content-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.affiliate-box {
    background: #f0f8ff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.affiliate-box h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.affiliate-box .btn {
    margin: 0.5rem;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

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

.highlight-box {
    background: #fff5f5;
    border-left: 4px solid #e53e3e;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
}

/* Fix btn-secondary visibility on light backgrounds */
.content-section[style*="background: #f8fafc"] .btn-secondary,
.content-section[style*="background: #f8fafc"] .activity-item .btn-secondary {
    background: #2c5282;
    color: white;
    border: 2px solid #2c5282;
}

.content-section[style*="background: #f8fafc"] .btn-secondary:hover,
.content-section[style*="background: #f8fafc"] .activity-item .btn-secondary:hover {
    background: #2a4e7c;
    color: white;
    border: 2px solid #2a4e7c;
    transform: translateY(-2px);
} 