/* style.css */

:root {
    --primary-color: #4a0404;
    --secondary-color: #8b1219;
    --accent-color: #d4af37;
    /* Gold */
    --text-color: #f4f4f4;
    --dark-bg: #121212;
    --card-bg: rgba(30, 30, 30, 0.8);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-speed: 0.4s;
}

body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/tango-image.jpg');
    /* Ensure this image exists or use a placeholder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 550px;
    margin-left: 55px;
    margin-right: auto;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.5s;
}

.hero p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.8s;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 1.1s;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
    z-index: -1;
}

.btn:hover {
    color: var(--primary-color);
}

.btn:hover::before {
    width: 100%;
}

/* --- About Us Section --- */
.about-us {
    position: relative;
    padding: 150px 0;
    background-color: #1a1a1a;
    overflow: hidden;
}

.video-background,
.video-background-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.video-background video,
.video-background-services video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.collage-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.collage-item:hover .collage-overlay {
    opacity: 1;
    transform: translateY(0);
}

.collage-1 {
    grid-column: 1 / 8;
    grid-row: 1 / 9;
    z-index: 1;
}

.collage-2 {
    grid-column: 7 / 13;
    grid-row: 3 / 8;
    z-index: 2;
    border: 4px solid #fff;
}

.collage-3 {
    grid-column: 4 / 11;
    grid-row: 7 / 13;
    z-index: 3;
    border: 4px solid #fff;
}

/* --- Services Section --- */
.services {
    padding: 150px 0;
    background-color: #0f0f0f;
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    color: var(--text-color);
    margin-bottom: 80px;
}

.services h2 span {
    color: var(--accent-color);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: grayscale(30%);
    transition: filter 0.4s ease;
}

.service-card:hover img {
    filter: grayscale(0%);
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    padding: 25px 25px 10px;
}

.service-card p {
    padding: 0 25px 25px;
    color: #aaa;
    font-size: 1rem;
}

.btn-service {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-color);
}

/* --- Social Contact --- */
.social-contact {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0f0f0f, #1a1a1a);
    text-align: center;
}

.social-contact h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-link svg {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    fill: currentColor;
}

.social-link:hover {
    transform: translateY(-5px);
    background: var(--accent-color);
    color: var(--dark-bg);
    border-color: var(--accent-color);
}

/* --- Footer --- */
.footer {
    background-color: #000;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.footer-section p {
    color: #888;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #555;
    font-size: 0.9rem;
}

/* --- Fixed Social Icons --- */
.fixed-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.social-icon-fixed {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-icon-fixed svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.social-icon-fixed:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    color: var(--dark-bg);
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-us .container {
        flex-direction: column;
    }

    .ba-section .container {
        grid-template-columns: 1fr;
    }

    .ba-collage {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

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

    .fixed-social {
        flex-direction: row;
        bottom: 20px;
        right: 20px;
    }

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