@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Unbounded:wght@700&display=swap');

:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #c5a47e;
    --accent-hover: #b39371;
    --text-color: #333333;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;

    --h1-size: clamp(2.5rem, 5vw, 4rem);
    --h2-size: clamp(2rem, 4vw, 3rem);
    --body-size: clamp(1rem, 2vw, 1.2rem);

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;

    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    /* font-family: 'Montserrat', sans-serif; */
    line-height: 1.6;
    background: var(--gray-light);
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: var(--spacing-sm) var(--spacing-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(5px);
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.navbar .logo:hover {
    color: var(--accent-color);
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: var(--spacing-md);
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links .active {
    color: var(--accent-color);
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
    padding-bottom: 5vh;
    overflow: hidden;
}

.hero-section iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-section h1 {
    font-size: var(--h1-size);
    font-family: Arial, Helvetica, sans-serif;
    /* font-family: 'Unbounded', sans-serif; */
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: var(--body-size);
}

.hero-text {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    border-radius: 8px;
    max-width: 80%;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section h1 {
    font-size: var(--h1-size);
    font-family: Arial, Helvetica, sans-serif;
    /* font-family: 'Unbounded', sans-serif; */
    animation: fadeIn 1s ease-in-out;
}

.hero-section p {
    font-size: var(--body-size);
    animation: fadeIn 1.2s ease-in-out;
}

.content {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    animation: fadeIn 1.5s ease-in-out;
}

.content h2 {
    font-size: var(--h2-size);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content ul {
    list-style: none;
    padding: 0;
}

.content li {
    font-size: var(--body-size);
    background: var(--gray-light);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.content li:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}

.content a {
    display: inline-block;
    margin-top: var(--spacing-sm);
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    padding: 12px 24px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
}

.content a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.content1 {
    max-width: 800px;
    margin: var(--spacing-lg) auto;
    text-align: center;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, var(--gray-light), var(--gray-medium));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    animation: fadeIn 1.5s ease-in-out;
}

.content1 h2 {
    font-size: var(--h2-size);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.content1 p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.content1 ul {
    list-style: none;
    padding: 0;
}

.content1 li {
    font-size: var(--body-size);
    background: var(--gray-light);
    padding: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.content1 li:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: scale(1.05);
}


.site-footer {
    text-align: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-links a {
    color: var(--secondary-color);
    margin: 0 var(--spacing-xs);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.team-section {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 900px;
    margin: auto;
}

.team-highlight {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-info1 {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: right;
}

.team-info {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    text-align: left;
}

.team-info1 h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.team-info1 p {
    font-size: 1rem;
    color: var(--text-color);
}

.team-info p {
    font-size: 1rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .team-highlight {
        flex-direction: column;
        gap: 1rem;
    }
}

.team-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.team-member {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 400px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.team-member:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-in-out;
    position: relative;
}

.modal-content img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    zoom: 125%;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-color);
}

.close:hover {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .team-member {
        width: 90%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    margin-left: 1rem;
    z-index: 1001;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.lang-btn img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.arrow {
    font-size: 0.7rem;
}

.lang-menu {
    display: none;
    position: absolute;
    top: 120%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    min-width: 160px;
    overflow: hidden;
}

.lang-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.lang-menu a:hover {
    background-color: #f0f0f0;
}

.lang-menu img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.lang-menu.show {
    display: block;
}

/* 🌐 Mobile & Tablet Adjustments */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0.5rem 0;
    }

    .hero-section {
        height: 100dvh;
        padding-bottom: 2rem;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        padding: 1rem;
        max-width: 95%;
        font-size: 0.9rem;
    }

    .content {
        padding: 1rem;
        margin: 2rem 1rem;
        width: 100%;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .content p,
    .content li {
        font-size: 1rem;
    }

    .modal-content {
        padding: 1rem;
        width: 95%;
    }

    .team-highlight {
        flex-direction: column;
        gap: 1.5rem;
    }

    .team-member {
        width: 90%;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .footer-links {
        flex-direction: column;
    }

    .footer-links a {
        margin: 0.5rem 0;
    }
}

.burger {
    display: none;
    cursor: pointer;
}

.burger i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        left: 0;
        transform: none;
        border-radius: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 15px 20px;
    }

    .nav-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .logo {
        justify-content: center;
        font-size: 1rem;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 8px 16px;
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 15px;
    }

    .social-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-links a {
        font-size: 0.8rem;
        padding: 8px 10px;
    }

    .social-links a {
        font-size: 1rem;
    }
}

.burger {
    display: none;
    cursor: pointer;
    text-align: center;
}

.burger i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding-top: 10px;
    }

    .nav-links.show {
        display: flex; /* Show links when 'show' class is added */
    }

    .nav-container {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
}