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

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b4513;
    --accent-color: #daa520;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Navbar */
.navbar {
    background: var(--white);
    color: var(--text-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-color); /* FIXED */
    text-decoration: none;
    font-weight: 500;
}

.nav-links a:hover {
    opacity: 0.7;
}

.btn-login, .btn-signup {
    padding: 8px 15px;
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.btn-login:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-signup {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.btn-signup:hover {
    background: var(--white);
}

/* Hero */
.hero {
    background: linear-gradient(rgba(139, 69, 19, 0.6), rgba(139, 69, 19, 0.6)), 
                url('../images/ayodhya.jpg') center/cover;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

/* Buttons */
.btn-primary {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Sections */
.featured-destinations,
.about,
.contact-section {
    padding: 60px 20px;
}

.featured-destinations {
    background: var(--light-bg);
}

h1, h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

/* Grid */
.destinations-grid,
.about-features,
.services-grid,
.footer-content {
    display: grid;
    gap: 30px;
}

.destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.destination-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

.destination-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    color: var(--secondary-color);
}

/* About */
.about p {
    text-align: center;
    max-width: 800px;
    margin: auto;
    color: #666;
}

.feature {
    text-align: center;
    padding: 30px;
    background: var(--light-bg);
    border-radius: 10px;
}

/* Forms */
.auth-container,
.contact-info,
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 40px 20px;
}

.footer a {
    color: var(--white);
}

/* Booking */
.booking-item {
    background: var(--white);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
}

/* Status */
.status-confirmed { background: #28a745; color: #fff; }
.status-pending { background: #ffc107; color: #fff; }
.status-cancelled { background: #dc3545; color: #fff; }

/* Messages */
.success {
    background: #d4edda;
    color: #155724;
}

.error {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .destination-info {
        grid-template-columns: 1fr;
    }
}