/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
    font-size: 1.3em;
    font-weight: 300;
}

/* Navigation */
nav {
    background-color: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #34495e;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-gray {
    background-color: #f8f9fa;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

/* Gallery Sections */
.gallery-section {
    margin-bottom: 50px;
}

.gallery-section:last-child {
    margin-bottom: 0;
}

.gallery-section-title {
    font-size: 1.8em;
    color: #667eea;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #e0e0e0;
    display: block;
}

/* For 2 images in a row - optional styling */
.gallery-grid.two-columns {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.feature h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.feature p {
    color: #666;
}

/* Content Box */
.content-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.content-box p {
    margin-bottom: 15px;
    text-align: justify;
}

.note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

/* Pricing Box */
.pricing-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 30px auto;
}

.price-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.price-item h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.price-item p {
    font-size: 1.1em;
    color: #555;
}

.price {
    font-size: 2em !important;
    font-weight: bold;
    color: #667eea !important;
}

/* Contact Section */
.contact-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.host-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.host-info h3 {
    color: #667eea;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.host-details p {
    font-size: 1.1em;
    margin: 5px 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.contact-item .icon {
    font-size: 1.5em;
    min-width: 30px;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

.footer-links {
    margin-top: 10px;
    font-size: 0.9em;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.legal-content h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.legal-content h3 {
    color: #667eea;
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    color: #555;
    font-size: 1.3em;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-info-box {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #667eea;
    border-radius: 4px;
    margin: 20px 0;
}

.contact-info-box p {
    margin: 0;
    text-align: left;
}

.legal-note {
    font-style: italic;
    color: #666;
    margin-top: 40px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2em;
    }
    
    .subtitle {
        font-size: 1em;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li a {
        text-align: center;
    }
    
    .section h2 {
        font-size: 2em;
    }

    .gallery-section-title {
        font-size: 1.4em;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-box {
        grid-template-columns: 1fr;
    }
    
    .contact-box {
        padding: 20px;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h2 {
        font-size: 1.8em;
    }

    .legal-content h3 {
        font-size: 1.4em;
    }

    .legal-content h4 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.5em;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .content-box {
        padding: 20px;
    }

    .gallery-item img {
        height: 200px;
    }

    .legal-content {
        padding: 15px;
    }
}

/* Optional: Lightbox effect on click (you can add JavaScript for this) */
.gallery-item img:hover {
    opacity: 0.9;
}
