/* Style for Mystic India Travels landing page */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #012f32;
    color: white;
}

.topbar {
    background-color: #024d50;
    color: white;
    padding: 10px 0;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
}

.navbar {
    background-image: url('img/navbar-1.png');
    background-size: cover;
}

.navbar-brand {
    color: #00c9ff !important;
    font-weight: 700;
    font-size: 2rem;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover,
.nav-link.active {
    color: #00c9ff !important;
}

.btn-info {
    background-color: #00c9ff;
    border: none;
    color: black;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 30px;
}

.btn-info:hover {
    background-color: #0099cc;
    color: white;
}

.hero {
    background-image: url('img/hero-1.png');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.hero h1 {
    font-weight: 900;
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero h2 {
    font-style: italic;
    font-weight: 500;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 30px;
}

.btn-outline-light:hover {
    background-color: #00c9ff;
    color: black;
    border-color: #00c9ff;
}

section {
    padding: 60px 0;
}

#tour {
    background-color: rgba(2, 77, 80, 0.9);
    text-align: center;
}

#tour h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

#tour p {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
}

#tour img {
    border-radius: 15px;
    width: 100%;
    height: 150px;
    object-fit: contain;
}

#tour h5 {
    margin-top: 15px;
    font-weight: 600;
}

#accommodation,
#food,
#shop,
#wellness {
    background-color: rgba(2, 77, 80, 0.8);
    color: white;
}

#accommodation img,
#food img,
#shop img {
    border-radius: 15px;
    width: 100%;
    height: auto;
}

#accommodation h2,
#food h2,
#shop h2,
#wellness h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

#accommodation p,
#food p,
#shop p,
#wellness p {
    font-size: 1.1rem;
}

footer {
    background-color: #012f32;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* Contact Modal Styles */
.modal-content {
    background-color: #012f32;
    color: white;
    border: none;
    border-radius: 15px;
}

.modal-header {
    padding: 1.5rem 1.5rem 0.5rem;
}

.modal-header .btn-close {
    background-color: white;
    opacity: 0.8;
}

.modal-title {
    font-weight: 700;
    color: #00c9ff;
}

.modal-body {
    padding: 1.5rem;
}

.form-label {
    color: #00c9ff;
    font-weight: 500;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
    padding: 0.75rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #00c9ff;
    color: white;
    box-shadow: 0 0 0 0.25rem rgba(0, 201, 255, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 120px;
}

.modal .btn-info {
    background-color: #00c9ff;
    color: #012f32;
    font-weight: 600;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.modal .btn-info:hover {
    background-color: #0099cc;
    color: white;
    transform: translateY(-2px);
}

.invalid-feedback {
    color: #ff6b6b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding-left: 20px;
        text-align: center;
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .btn-info,
    .btn-outline-light {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
