@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #e0e0e0;
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-brand {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 45px;
    width: auto;
    margin-right: 1.5rem;
}

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

.nav-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

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

.lang-switch {
    font-weight: 600;
    color: #bfa15f !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch:hover {
    color: #fff !important;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5), #0a0a0a);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 5rem;
}

.hero-content .subtitle {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #bfa15f;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 6vw;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.scroll-down {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    border-bottom: 1px solid #bfa15f;
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.scroll-down:hover {
    opacity: 0.7;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.split-section {
    display: flex;
    background-color: #0a0a0a;
}

.image-col {
    flex: 1;
    background-color: #1a1a1a;
}

.image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
}

.text-col {
    flex: 1;
    padding: 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-col h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.text-col p {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.highlight-section {
    background-color: #111;
    padding: 8rem 0;
    position: relative;
}

.lessons-container {
    display: flex;
    align-items: center;
    position: relative;
}

.lessons-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.lessons-image img {
    width: 100%;
    height: auto;
    min-height: 600px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%);
}

.lessons-content {
    flex: 1;
    background-color: #1a1a1a;
    padding: 5rem;
    position: relative;
    z-index: 2;
    margin-left: -8%;
    border-top: 3px solid #bfa15f;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.lessons-content .subtitle {
    display: block;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #bfa15f;
    margin-bottom: 1rem;
}

.lessons-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.lessons-content p {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.lesson-list {
    list-style: none;
    margin-bottom: 3rem;
}

.lesson-list li {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.lesson-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #bfa15f;
    font-weight: 600;
}

.lesson-list strong {
    color: #fff;
    font-weight: 600;
}

.lesson-btn {
    display: inline-block;
    text-decoration: none;
}

.dark-section {
    background-color: #111;
    padding: 8rem 0;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
}

.dark-text {
    color: #0a0a0a;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: block;
    text-decoration: none;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.7s ease;
    filter: brightness(0.6) grayscale(50%);
}

.grid-item img.custom-position {
    object-position: center 20%;
}

.grid-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.9) grayscale(0%);
}

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3rem;
    z-index: 2;
}

.item-info h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.item-info span {
    color: #bfa15f;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.media-section {
    background-color: #f4f4f4;
    padding: 8rem 0;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-masonry img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.gallery-masonry img:hover {
    filter: grayscale(0%);
}

.contact-container {
    display: flex;
    gap: 6rem;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #bfa15f;
    transform: translateY(-5px);
}

.contact-form-wrapper {
    flex: 1;
    background-color: #1a1a1a;
    padding: 4rem;
    border-radius: 4px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 1rem 0;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: #bfa15f;
}

.submit-btn {
    background: transparent;
    color: #bfa15f;
    border: 1px solid #bfa15f;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: #bfa15f;
    color: #0a0a0a;
}

footer {
    background-color: #000;
    padding: 2.5rem 0;
    border-top: 1px solid #1a1a1a;
    font-size: 0.85rem;
    color: #666;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright p,
.creator-credits p {
    margin: 0;
    letter-spacing: 1px;
}

.creator-credits {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.creator-socials {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
}

.creator-socials a {
    color: #666;
    transition: color 0.3s ease, transform 0.3s ease;
}

.creator-socials a:hover {
    color: #bfa15f;
    transform: translateY(-2px);
}

.footer-legal {
    text-align: right;
}

.footer-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #bfa15f;
}

@media (max-width: 1024px) {

    .highlight-section,
    .dark-section,
    .media-section {
        padding: 6rem 0;
    }

    .split-section {
        flex-direction: column;
    }

    .lessons-container {
        flex-direction: column;
    }

    .lessons-content {
        margin-left: 0;
        margin-top: -10%;
        padding: 3.5rem;
    }

    .text-col {
        padding: 6rem 2rem;
    }

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

    .container {
        padding: 0 2rem;
    }

    .contact-container {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-form-wrapper {
        width: 100%;
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {

    .highlight-section,
    .dark-section,
    .media-section {
        padding: 4rem 0;
    }

    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .text-col {
        padding: 4rem 2rem;
    }

    .lessons-content {
        padding: 2.5rem;
        margin-top: -15%;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .creator-credits {
        flex-direction: column;
        gap: 0.5rem;
        justify-content: center;
    }

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