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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 300;
    letter-spacing: 0.5px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #222;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.2rem 40px;
    }

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B91C1C;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

    .nav-links a {
        text-decoration: none;
        color: #555;
        font-weight: 400;
        font-size: 0.9rem;
        letter-spacing: 1px;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #B91C1C;
        }

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

    .mobile-toggle span {
        width: 28px;
        height: 2px;
        background-color: #222;
        transition: 0.3s;
    }

/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 100%;
}

.hero-logo {
    max-width: 1200px;
    width: 100%;
    height: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #333;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Intro Section */
.intro {
    padding: 100px 0;
    background-color: #fafafa;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

    .intro-content h2 {
        font-size: 2rem;
        font-weight: 300;
        margin-bottom: 1.5rem;
    }

    .intro-content p {
        font-size: 1.15rem;
        line-height: 1.9;
        color: #555;
    }

/* About Section */
.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

    .about-content h2 {
        margin-bottom: 1.5rem;
        color: #B91C1C;
    }

    .about-content p {
        margin-bottom: 1.5rem;
        font-size: 1.05rem;
        line-height: 1.9;
        color: #555;
    }

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.credential-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #B91C1C;
    letter-spacing: 0.5px;
}

.credential-item p {
    font-size: 0.9rem;
    color: #777;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

    .section-header h2 {
        margin-bottom: 0.5rem;
        color: #B91C1C;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #777;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 40px 35px;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #B91C1C;
    transition: box-shadow 0.3s, transform 0.3s;
}

    .service-card:hover {
        box-shadow: 0 8px 30px rgba(185, 28, 28, 0.15);
        transform: translateY(-3px);
    }

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #222;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #fff;
}

.gallery-carousel {
    margin-bottom: 80px;
}

    .gallery-carousel:last-child {
        margin-bottom: 0;
    }

.carousel-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: #B91C1C;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.5px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-track-container {
    overflow: hidden;
    flex: 1;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.3s;
}

    .carousel-item:hover {
        transform: translateY(-5px);
    }

    .carousel-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border: 3px solid #B91C1C;
        border-radius: 4px;
    }

.carousel-btn {
    background-color: #B91C1C;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

    .carousel-btn:hover {
        background-color: #991B1B;
        transform: scale(1.1);
    }

    .carousel-btn:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

        .carousel-btn:disabled:hover {
            transform: none;
        }

/* Spotlight Section */
.spotlight-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.spotlight-card {
    background-color: #fff;
    padding: 50px 40px;
    border: 2px solid #B91C1C;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.spotlight-title {
    color: #B91C1C;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spotlight-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.spotlight-divider {
    width: 60px;
    height: 3px;
    background-color: #B91C1C;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fafafa;
}

.contact-info-center {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.info-card-center {
    background-color: white;
    padding: 60px 50px;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #B91C1C;
    max-width: 700px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

    .info-card-center h3 {
        font-size: 1.8rem;
        font-weight: 300;
        margin-bottom: 2.5rem;
        color: #B91C1C;
        text-align: center;
    }

.info-items-center {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item-center {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .info-item-center .label {
        font-size: 0.85rem;
        font-weight: 600;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .info-item-center .value {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
    }

    .info-item-center .value-link {
        font-size: 1.1rem;
        color: #B91C1C;
        text-decoration: none;
        transition: all 0.3s;
        font-weight: 500;
    }

        .info-item-center .value-link:hover {
            color: #991B1B;
            text-decoration: underline;
        }

/* Footer */
.footer {
    background-color: #1f1f1f;
    color: #ccc;
    padding: 50px 0;
}

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

.footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #B91C1C;
}

.footer p {
    font-size: 0.9rem;
    color: #999;
}

.footer-license {
    font-size: 0.9rem;
    color: #B91C1C !important;
    font-weight: 500;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* 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.95);
}

    .lightbox.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    user-select: none;
}

    .lightbox-content.zoomed {
        cursor: zoom-out;
        max-width: none;
        max-height: none;
        transform: scale(2);
    }

    .lightbox-content.panning {
        cursor: move;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10000;
    user-select: none;
}

    .lightbox-close:hover {
        color: #B91C1C;
    }

.lightbox-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav {
    pointer-events: all;
    background-color: rgba(185, 28, 28, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .lightbox-nav:hover {
        background-color: rgba(185, 28, 28, 1);
        transform: scale(1.1);
    }

    .lightbox-nav:disabled {
        background-color: rgba(100, 100, 100, 0.5);
        cursor: not-allowed;
    }

        .lightbox-nav:disabled:hover {
            transform: none;
        }

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .navbar .container {
        padding: 1.2rem 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .credentials {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-item {
        min-width: calc(50% - 10px);
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }

        .nav-links.active {
            max-height: 400px;
        }

        .nav-links li {
            padding: 1.2rem 40px;
            border-bottom: 1px solid #f0f0f0;
        }

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .hero-logo {
        max-width: 700px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .intro,
    .about,
    .services,
    .gallery,
    .contact {
        padding: 70px 0;
    }

    .carousel-item {
        min-width: 100%;
    }

    .carousel-container {
        gap: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .gallery-carousel {
        margin-bottom: 60px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }

    .lightbox-controls {
        padding: 0 10px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .navbar .container {
        padding: 1rem 20px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-logo {
        max-width: 500px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .service-card,
    .info-card-center {
        padding: 40px 30px;
    }

    .intro,
    .about,
    .services,
    .gallery,
    .contact {
        padding: 50px 0;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .carousel-container {
        gap: 10px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-close {
        font-size: 35px;
        right: 15px;
    }
}
