/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.site-header {
    background-color: #1a3a52;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    text-decoration: underline;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/hero.webp') center/cover;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255,255,255,0.1);
    border: 2px solid #6ab4d1;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s;
}

.hero-button:hover {
    background: rgba(106,180,209,0.3);
}

/* Section Styles */
.content-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a3a52;
    font-weight: 400;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: #999;
    margin: 0 auto 50px;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.two-column img {
    width: 100%;
    height: auto;
    display: block;
}

.two-column-content {
    padding: 20px;
}

.two-column-content p {
    margin-bottom: 20px;
    color: #4c4c4c;
    font-size: 16px;
}

/* Full Width Text Section */
.full-width-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.full-width-text p {
    margin-bottom: 20px;
    color: #4c4c4c;
    font-size: 16px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-quote {
    margin-bottom: 15px;
    display: inline-block;
}

.testimonial-quote svg {
    width: 60px;
    height: auto;
    display: block;
}

.testimonial-text {
    color: #616170;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    color: #000;
    font-weight: 600;
    font-size: 18px;
}

/* Dark Section */
.section-dark {
    background-color: #4d4d4d;
    color: #fff;
    padding: 80px 0;
}

.section-dark .two-column-content p {
    color: #fff;
}

.section-dark .section-title {
    color: #fff;
}

/* Contact Page */
.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-section {
    background-color: #4d4d4d;
    color: #fff;
    padding: 70px 0;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info hr {
    border: none;
    border-top: 3px solid #c7c7c7;
    margin: 20px 0;
    width: 100px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Contact Form */
.contact-form {
    background: transparent;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d3d3d3;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6ab4d1;
}

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

.form-submit {
    padding: 12px 40px;
    background: transparent;
    border: 2px solid #6ab4d1;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: rgba(106,180,209,0.3);
}

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-message.success {
    background: #4caf50;
    color: #fff;
}

.form-message.error {
    background: #f44336;
    color: #fff;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.no-images-message,
.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 18px;
}

.error-message {
    color: #f44336;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.2s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s;
    line-height: 1;
    user-select: none;
}

.lightbox-close:hover {
    color: #6ab4d1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    padding: 20px;
    user-select: none;
    transition: color 0.3s, transform 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #6ab4d1;
    transform: translateY(-50%) scale(1.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-content img {
        max-height: 85vh;
    }
}

/* Footer */
.site-footer {
    background-color: #1a3a52;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

