/* styles.css */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #2c5530;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #a3d9a5;
}

/* Balanced Hero Section - Vibrant Image + Readable Text */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('https://so1.360tres.com/t01a91e60b4b166dd0a.jpg') center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    line-height: 1.1;
    background: rgba(0,0,0,0.3);
    padding: 20px 30px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 400;
    letter-spacing: 0.8px;
    line-height: 1.6;
    color: #f8f8f8;
    background: rgba(0,0,0,0.2);
    padding: 15px 25px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.6);
    background: linear-gradient(135deg, #ff5c4c 0%, #d4493b 100%);
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2.5rem;
        padding: 15px 20px;
        letter-spacing: 1px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        padding: 12px 20px;
    }
    
    .btn {
        padding: 14px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 2rem;
        padding: 12px 15px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        padding: 10px 15px;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}




/* Introduction Section */
.intro {
    padding: 4rem 0;
    background-color: white;
}

.intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c5530;
}

.intro p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.highlights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5530;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c5530;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    display: flex;
    list-style: none;
    gap: 1rem;
}

footer a {
    color: #a3d9a5;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    footer .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Explore Page Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), 
                url('https://so1.360tres.com/t01a91e60b4b166dd0a.jpg') center/cover;
    padding: 120px 0 60px;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.page-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.page-header p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* Attractions Grid */
.attractions {
    padding: 4rem 0;
    background-color: white;
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.attraction-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
}

.attraction-card h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.attraction-card ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.attraction-card li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.gallery-preview h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.gallery-preview > .container > p {
    color: #666;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.caption {
    display: block;
    padding: 1rem;
    background: white;
    color: #2c5530;
    font-weight: 600;
}

/* Lightbox/Pop-up Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox:target {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: lightboxFade 0.3s ease;
}

@keyframes lightboxFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 5px;
    display: block;
}

.close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.close:hover {
    background: #c0392b;
}

.image-info {
    margin-top: 1rem;
    text-align: center;
}

.image-info h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.image-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Prevent body scroll when lightbox is open */
.lightbox:target ~ body {
    overflow: hidden;
}

/* Plan Your Trip Page Styles */
.planning-guide {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.planning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.planning-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.planning-card.full-width {
    grid-column: 1 / -1;
}

.planning-card h3 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #4a7c59;
    padding-bottom: 0.5rem;
}

/* Seasons & Transport Styles */
.seasons, .transport-options, .accommodation {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.season, .transport, .stay-option {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid #4a7c59;
}

.season h4, .transport h4, .stay-option h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.season p, .transport p, .stay-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Itineraries */
.itineraries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.itinerary {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.itinerary h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.itinerary ul {
    padding-left: 1.2rem;
}

.itinerary li {
    margin-bottom: 0.5rem;
    color: #555;
    font-size: 0.9rem;
}

/* Pricing Table */
.pricing {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.item {
    font-weight: 500;
    color: #333;
}

.cost {
    font-weight: 700;
    color: #e74c3c;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .planning-grid {
        grid-template-columns: 1fr;
    }
    
    .itineraries {
        grid-template-columns: 1fr;
    }
    
    .seasons, .transport-options, .accommodation {
        gap: 0.8rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-container h3 {
    color: #2c5530;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-btn {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
    width: 200px;
}

/* Contact Information */
.contact-info {
    background: #2c5530;
    color: white;
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    margin-bottom: 0.8rem;
    color: #a3d9a5;
    font-size: 1.1rem;
}

.info-item p, .info-item li {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-item ul {
    padding-left: 1.2rem;
}

.info-item li {
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.faq-section h3 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-item h4 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* Gallery Page Styles */
.gallery-filters {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #4a7c59;
    background: white;
    color: #4a7c59;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4a7c59;
    color: white;
}

/* Main Gallery Grid */
.main-gallery {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.caption {
    display: block;
    padding: 1rem;
    background: white;
    color: #2c5530;
    font-weight: 600;
    text-align: center;
}

/* Enhanced Lightbox Styles for Gallery */
.photo-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.location, .category {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 200px;
    }
}