/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inconsolata', monospace;
    background-color: #121212;
    color: #f1f1f1;
    line-height: 1.6;
}

/* Header */
.navbar {
    background-color: #5a759e !important;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #f1f1f1 !important;
    letter-spacing: 2px;
}

.navbar-brand:hover {
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #f1f1f1 !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler .material-icons {
    color: #f1f1f1;
    font-size: 1.5rem;
}

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

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header for Secondary Pages */
.page-header {
    background-color: #252525;
    padding: 180px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f1f1;
    margin-bottom: 0;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #f1f1f1;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #336db9;
}

.bg-light-section {
    background-color: #1a1a1a;
}

/* Destination Cards */
.destination-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card h3 {
    color: #336db9;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destination-card p {
    color: #cccccc;
    line-height: 1.8;
}

.destination-card img {
    border-radius: 10px;
}

/* Story Cards */
.story-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-3px);
}

.story-card h4 {
    color: #336db9;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-card p {
    color: #cccccc;
    margin-bottom: 1rem;
}

/* Advantage Items */
.advantage-item {
    text-align: center;
    padding: 2rem 1rem;
}

.advantage-item h4 {
    color: #336db9;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.advantage-item p {
    color: #cccccc;
    line-height: 1.8;
}

/* Review Cards */
.review-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.review-card blockquote {
    margin: 0;
}

.review-card p {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.review-card cite {
    color: #336db9;
    font-weight: 600;
    font-style: normal;
}

/* Tip Cards */
.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
}

.tip-card h4 {
    color: #336db9;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #cccccc;
    line-height: 1.8;
}

/* Forms */
.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #f1f1f1;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #336db9;
    box-shadow: 0 0 0 0.2rem rgba(51, 109, 185, 0.25);
    color: #f1f1f1;
}

.form-control::placeholder {
    color: rgba(241, 241, 241, 0.6);
}

.btn-primary {
    background-color: #336db9;
    border-color: #336db9;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a759e;
    border-color: #5a759e;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1rem;
    min-height: 310px;
}

.contact-info h4 {
    color: #336db9;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #dfdfdf;
    /* margin-bottom: 0.5rem; */
}

.contact-info .material-icons {
    color: #336db9;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: #336db9;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.footer-links a:hover {
    color: #336db9;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer p {
    color: #999999;
    margin-bottom: 0.5rem;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: #336db9;
    color: #f1f1f1;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #f1f1f1;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #ffffff;
}

/* Thank You Page */
.thank-you-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    margin: 2rem auto;
}

.thank-you-card h2 {
    color: #336db9;
    margin-bottom: 1.5rem;
}

.thank-you-card p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Service Pages */
.service-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.service-page h2 {
    color: #336db9;
    margin-bottom: 1.5rem;
}

.service-page h3 {
    color: #5a759e;
    margin: 2rem 0 1rem;
}

.service-page p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-page ul {
    color: #cccccc;
    margin-bottom: 1rem;
}

.service-page ul li {
    margin-bottom: 0.5rem;
}

/* Error States */
.form-error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .destination-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .destination-card .row {
        flex-direction: column;
    }
    
    .destination-card .col-md-9,
    .destination-card .col-md-3 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .story-card,
    .tip-card {
        padding: 1.5rem;
    }
    
    .cookie-popup {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}
