/* ===================================
   FULL PAGE SLIDER STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
    height: 100vh;
}

/* ===================================
   PAGE CONTAINER
   =================================== */
.page-container {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.page {
    height: 100vh;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    overflow-y: auto;
    overflow-x: hidden;
}

.page.active {
    display: block;
    opacity: 1;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 40px;
    width: 100%;
    min-height: 100vh;
}

/* ===================================
   PAGE CONTROLS - TOP COUNTER
   =================================== */
.page-counter-top {
    position: fixed;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* ===================================
   SIDE NAVIGATION DOTS
   =================================== */
.side-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.side-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(44, 95, 45, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.side-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.side-dot.active {
    background: var(--primary-color);
    width: 20px;
    height: 20px;
}

.side-dot::after {
    content: attr(data-page);
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.side-dot:hover::after {
    opacity: 1;
}

/* ===================================
   SCROLL UP/DOWN BUTTONS
   =================================== */
.scroll-btn {
    position: fixed;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 998;
}

.scroll-btn:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: scale(1.1);
}

.scroll-up {
    bottom: 200px;
}

.scroll-down {
    bottom: 140px;
}

.scroll-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===================================
   PAGE 1: HOME
   =================================== */
.page-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.hero-content {
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.subtitle {
    font-size: 1.8rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.hero-images {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-img {
    width: 350px;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-box {
    background: rgba(255,255,255,0.2);
    padding: 20px 40px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ===================================
   PAGE 2: ABOUT
   =================================== */
.page-2 {
    background: var(--bg-light);
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.content-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--primary-color);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* ===================================
   PAGE 3: ATTRACTIONS
   =================================== */
.page-3 {
    background: white;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.attraction-card {
    background: var(--bg-light);
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s;
}

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

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

.attraction-card h3 {
    color: var(--primary-color);
    margin: 12px 20px 8px;
    font-size: 1.2rem;
}

.attraction-card p {
    margin: 0 20px 15px;
    font-size: 0.9rem;
}

/* ===================================
   PAGE 4: CULTURE
   =================================== */
.page-4 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.culture-card {
    background: white;
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.culture-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.culture-card h3 {
    color: var(--primary-color);
    margin: 12px 20px 8px;
    font-size: 1.3rem;
}

.culture-card p {
    margin: 0 20px 15px;
    font-size: 0.95rem;
}

.festivals {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.festivals h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.festival-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.festival-item {
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.festival-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* ===================================
   PAGE 5: FOOD
   =================================== */
.page-5 {
    background: white;
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.food-card {
    background: var(--bg-light);
    padding: 0;
    border-radius: 15px;
    overflow: hidden;
    border-top: 5px solid var(--accent-color);
}

.food-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.food-card h3 {
    color: var(--primary-color);
    margin: 12px 20px 8px;
}

.food-card strong {
    color: var(--accent-color);
    display: block;
    margin: 0 20px 8px;
    font-size: 0.9rem;
}

.food-card p {
    margin: 0 20px 15px;
    font-size: 0.9rem;
}

.beverages {
    background: var(--primary-color);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.beverages h3 {
    margin-bottom: 20px;
}

.beverage-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.beverage-item {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
}

/* ===================================
   PAGE 6: TRAVEL
   =================================== */
.page-6 {
    background: var(--bg-light);
}

.travel-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.travel-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.travel-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.travel-section ul {
    margin-left: 20px;
}

.travel-section li {
    margin-bottom: 10px;
}

/* ===================================
   PAGE 7: CONTACT
   =================================== */
.page-7 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-7 .page-title {
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.error {
    color: #e74c3c;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
}

.char-count {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
}

.contact-info {
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-images {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-img {
        width: 100%;
        max-width: 400px;
    }
    
    .content-grid,
    .culture-grid,
    .travel-info {
        grid-template-columns: 1fr;
    }
    
    .attractions-grid,
    .food-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .page-controls {
        padding: 15px 20px;
    }
    
    .page-nav-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .side-nav,
    .scroll-btn {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.fade-in {
    animation: fadeIn 1s ease;
}
