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

body {
    font-family: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f2ec;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background-color: rgba(44, 62, 80, 0.95);
    padding: 15px;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-logo img {
    height: 120px;
    width: auto;
    display: block;
}

.hero-contact {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 10;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
}

.hero-contact a {
    color: #fff;
}

.hero-contact a:hover {
    color: #c9a961;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 35px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-phone {
    font-size: 1.6rem;
    font-weight: 600;
}

.hero-phone a {
    color: #c9a961;
}

.hero-phone a:hover {
    color: #fff;
}

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

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

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.gallery-link {
    display: block;
    cursor: pointer;
}

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

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

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

.about h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

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

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

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

.service-card {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

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

/* Video Showcase Section */
.videos {
    padding: 80px 0;
    background-color: #fff;
}

.videos h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.videos-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-item {
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    cursor: pointer;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.video-logo {
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.play-button svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.video-item h4 {
    padding: 20px;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: center;
}

.videos-cta {
    text-align: center;
    margin-top: 40px;
}

.videos-cta p {
    font-size: 1.2rem;
    color: #666;
}

.videos-cta a {
    color: #c9a961;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.videos-cta a:hover {
    color: #2c3e50;
}

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

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 600;
}

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

.contact-form h3,
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a961;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.btn-submit {
    background-color: #c9a961;
    color: #fff;
    padding: 16px 50px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #b89651;
    transform: translateY(-2px);
}

.form-notice {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.form-notice a {
    color: #c9a961;
    text-decoration: underline;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.contact-location {
    font-style: italic;
    color: #666;
}

.contact-phone {
    font-size: 1.3rem;
    font-weight: 600;
}

.contact-phone a {
    color: #2c3e50;
}

.contact-phone a:hover {
    color: #c9a961;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer a {
    color: #c9a961;
    text-decoration: underline;
}

.footer a:hover {
    color: #fff;
}

/* Privacy Policy Page Styles */
.privacy-header {
    background-color: #fff;
    padding: 25px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.privacy-header .logo img {
    height: 100px;
    width: auto;
}

.privacy-header .header-contact {
    font-size: 1.1rem;
    font-weight: 600;
}

.privacy-header .header-contact a {
    color: #2c3e50;
}

.privacy-header .header-contact a:hover {
    color: #c9a961;
}

.privacy-policy {
    padding: 80px 0;
    background-color: #fff;
    min-height: 400px;
}

.privacy-policy h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

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

.privacy-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-logo {
        top: 15px;
        left: 15px;
        padding: 10px;
    }

    .hero-logo img {
        height: 80px;
    }

    .hero-contact {
        top: 20px;
        right: 20px;
        font-size: 0.95rem;
        padding: 8px 15px;
    }

    .gallery-item img {
        height: 220px;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-logo img {
        height: 60px;
    }

    .hero-contact {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item img {
        height: 250px;
    }

    .about h2,
    .services h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}

/* Thank You Message Overlay */
.thank-you-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thank-you-overlay.show {
    opacity: 1;
}

.thank-you-content {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 60px 80px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 90%;
}

.thank-you-overlay.show .thank-you-content {
    transform: scale(1);
}

.thank-you-icon {
    width: 120px;
    height: 120px;
    background-color: #c9a961;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 70px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    animation: checkmark-pop 0.5s ease 0.2s both;
}

@keyframes checkmark-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.thank-you-content h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.thank-you-content p {
    font-size: 1.5rem;
    color: #c9a961;
    margin-bottom: 40px;
    font-weight: 500;
}

.close-thank-you {
    background-color: #c9a961;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-thank-you:hover {
    background-color: #b89851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

/* Responsive styling for thank you message */
@media (max-width: 768px) {
    .thank-you-content {
        padding: 40px 30px;
    }
    
    .thank-you-icon {
        width: 90px;
        height: 90px;
        font-size: 50px;
    }
    
    .thank-you-content h2 {
        font-size: 2.2rem;
    }
    
    .thank-you-content p {
        font-size: 1.2rem;
    }
    
    .close-thank-you {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
