/* ===== DAHOD TRAVEL GUIDE - Main Stylesheet ===== */
/* Color Palette: Nature-inspired earthy tones */
:root {
    --primary: #2d5a27;
    --primary-light: #4a8b3f;
    --primary-dark: #1a3a18;
    --secondary: #c17817;
    --secondary-light: #e8993d;
    --terracotta: #a0522d;
    --terracotta-light: #c97a5a;
    --sky-blue: #5b8fa8;
    --sky-blue-light: #8bb8cc;
    --cream: #faf6ed;
    --warm-white: #fefcf7;
    --dark: #2c2c2c;
    --dark-light: #4a4a4a;
    --gray: #888;
    --gray-light: #e8e4da;
    --border: #d4cfc4;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 6px;
    --transition: 0.3s ease;
    --font-main: 'Georgia', 'Times New Roman', serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark-light);
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    color: var(--dark-light);
}

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

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-hover);
}

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

.btn-secondary:hover {
    background: var(--secondary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-hover);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
    background: var(--cream);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    color: var(--gray);
    margin: 0 0.25rem;
}

.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* ===== PAGE HEADER / BANNER ===== */
.page-header {
    position: relative;
    padding: 8rem 0 4rem;
    background: var(--primary-dark);
    color: white;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    max-width: 650px;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar .logo:hover {
    color: var(--primary);
}

.navbar .logo-icon {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    position: relative;
}

.nav-links a {
    display: block;
    padding: 8px 14px;
    color: var(--dark-light);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(45, 90, 39, 0.08);
}

.nav-links a.active {
    font-weight: 600;
}

/* Dropdown */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 25px var(--shadow-hover);
    min-width: 220px;
    padding: 0.5rem 0;
    z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
    display: block;
}

.nav-links .dropdown-menu a {
    padding: 8px 20px;
    border-radius: 0;
    white-space: nowrap;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 0;
    margin-top: 70px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease;
    opacity: 0;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 58, 24, 0.78) 0%, rgba(26, 58, 24, 0.45) 60%, rgba(0, 0, 0, 0.3) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 20px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

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

.hero .btn {
    font-size: 1.05rem;
    padding: 14px 36px;
}

/* Hero indicators */
.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.hero-indicators button.active {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

/* ===== FEATURED SECTION (Home) ===== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-light);
}

.featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px var(--shadow-hover);
}

.featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.featured-card .card-body {
    padding: 1.5rem;
}

.featured-card .card-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.featured-card .card-body p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.featured-card .card-tag {
    display: inline-block;
    background: var(--cream);
    color: var(--primary);
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col img {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.two-col.reversed .col-image {
    order: 2;
}

.two-col .col-text {
    order: 1;
}

/* ===== ATTRACTIONS LIST ===== */
.attraction-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-light);
    transition: all var(--transition);
}

.attraction-item:hover {
    box-shadow: 0 8px 30px var(--shadow-hover);
    transform: translateY(-3px);
}

.attraction-item img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.attraction-item .attraction-content {
    padding: 1.5rem 2rem 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attraction-item .attraction-content h3 {
    margin-bottom: 0.5rem;
}

.attraction-item .attraction-content .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.attraction-item .attraction-content .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== INFO BOX ===== */
.info-box {
    background: var(--cream);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.info-box p, .info-box li {
    font-size: 0.95rem;
}

/* ===== ITINERARY CARDS ===== */
.itinerary-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--gray-light);
    margin-bottom: 2rem;
}

.itinerary-card .day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.itinerary-card .day-number {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===== GALLERY GRID ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

/* ===== TABLE STYLING ===== */
.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

table th {
    background: var(--primary);
    color: white;
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--gray-light);
}

table tr:nth-child(even) {
    background: var(--cream);
}

table tr:hover {
    background: rgba(45, 90, 39, 0.05);
}

/* ===== SEASON CARD ===== */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.season-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--gray-light);
    transition: all var(--transition);
}

.season-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.season-card .season-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.season-card h4 {
    margin-bottom: 0.5rem;
}

.season-card .badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.badge-best { background: #d4edda; color: #155724; }
.badge-good { background: #fff3cd; color: #856404; }
.badge-off { background: #f8d7da; color: #721c24; }

/* ===== TIP LIST ===== */
.tip-list {
    list-style: none;
    padding: 0;
}

.tip-list li {
    padding: 1rem 1rem 1rem 2.5rem;
    position: relative;
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 10px var(--shadow);
    border-left: 3px solid var(--primary);
}

.tip-list li::before {
    content: '\2713';
    position: absolute;
    left: 1rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===== FAQ ===== */
.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 0.75rem;
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-question::after {
    content: '\002B';
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.2rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--gray-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border var(--transition);
    background: var(--warm-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

footer h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

footer p, footer a, footer li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

footer a:hover {
    color: var(--secondary-light);
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.6rem;
}

footer .footer-about .logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1rem;
    display: block;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

footer .footer-bottom a {
    color: var(--secondary-light);
}

footer .footer-bottom a:hover {
    text-decoration: underline;
}

footer .cookie-notice {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    .page-header h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.8rem; }
    footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .attraction-item {
        grid-template-columns: 250px 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 60px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 25px var(--shadow);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-links.open {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px 16px;
        border-radius: var(--radius-sm);
    }
    
    .nav-links .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 1rem;
        background: var(--cream);
        border-radius: var(--radius-sm);
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero {
        min-height: 60vh;
        margin-top: 60px;
    }
    
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .page-header { padding: 6rem 0 3rem; }
    .page-header h1 { font-size: 2rem; }
    
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-col.reversed .col-image {
        order: 1;
    }
    
    .attraction-item {
        grid-template-columns: 1fr;
    }
    
    .attraction-item .attraction-content {
        padding: 1.5rem;
    }
    
    .attraction-item img {
        height: 200px;
        min-height: 200px;
    }
    
    footer .footer-grid {
        grid-template-columns: 1fr;
    }
    
    footer .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 1rem; }
    .hero .btn { font-size: 0.9rem; padding: 12px 28px; }
    .featured-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid img { height: 150px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== PRINT ===== */
@media print {
    .navbar, .back-to-top, .hero-indicators { display: none; }
    .hero { margin-top: 0; min-height: auto; padding: 2rem 0; }
    body { font-size: 12pt; color: black; }
    a { color: black; text-decoration: underline; }
}
