*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    font-family: Tahoma, sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 85px;
}
a{
    text-decoration: none;
    color: inherit;
}
img{
    max-width: 100%;
    display: block;
}
.container{
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header & Navigation */
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    padding: 8px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.logo-link{
    display: flex;
    align-items: center;
}
.site-logo{
    height: 42px;
    width: auto;
    object-fit: contain;
    background: transparent !important;
    mix-blend-mode: screen;
}
.menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}
.menu a{
    color: #fff;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}
.menu a:hover{
    color: #d4af37;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 5px;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #d4af37;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}
.lang-drop-btn {
    background: transparent;
    border: 1.5px solid #d4af37;
    color: #d4af37;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.lang-drop-btn:hover {
    background: #d4af37;
    color: #111;
}
.lang-drop-content {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #1a1a1a;
    min-width: 130px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
    border-radius: 10px;
    border: 1px solid #333;
    z-index: 1001;
    overflow: hidden;
}
.lang-dropdown.active .lang-drop-content {
    display: block;
}
.lang-drop-content a {
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    transition: background 0.2s;
}
.lang-drop-content a:hover {
    background-color: #d4af37;
    color: #111;
}

/* Hero */
.hero{
    position: relative;
    min-height: calc(100vh - 85px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../images/hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}
.hero-content{
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.hero-content h1{
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.hero-content h2{
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
}
.hero-content p{
    color: #ddd;
    font-size: 16px;
}
.hero-buttons{
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn{
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.35s ease;
    display: inline-block;
}
.btn-gold{
    background: #d4af37;
    color: #111;
}
.btn-gold:hover{
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}
.btn-outline{
    border: 2px solid #d4af37;
    color: #fff;
}
.btn-outline:hover{
    background: #d4af37;
    color: #111;
    transform: translateY(-3px);
}

/* Sections */
.about, .art-institute-section, .academy-section, .resume, .contact {
    padding: 90px 0;
    background: #111;
}
.resume { background: #0b0b0b; }
.academy-section { background: #141414; }

.section-title{
    text-align: center;
    font-size: 34px;
    color: #d4af37;
    margin-bottom: 30px;
}
.about-text, .content-box{
    max-width: 900px;
    margin: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 35px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    text-align: center;
}
.content-box p {
    line-height: 2;
    color: #ddd;
    font-size: 16px;
    margin-bottom: 20px;
}

/* Footer */
.footer{
    background: #080808;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer h3{
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 10px;
}
.footer p{
    color: #aaa;
    font-size: 14px;
    margin: 5px 0;
}
.copyright{
    margin-top: 20px;
    color: #666;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #141414;
        flex-direction: column;
        align-items: center;
        padding: 25px 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.1);
        gap: 18px;
    }
    .menu.active {
        display: flex;
    }
    .lang-drop-content {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content h2 {
        font-size: 18px;
    }
    .content-box {
        padding: 25px 15px;
    }
}

/* Fix for Dark Background Logo */
.site-logo {
    height: 45px !important;
    width: auto !important;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    object-fit: cover;
}

/* Contact Grid & Cards Styling */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
    text-align: right;
}
.contact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.contact-card:hover {
    transform: translateY(-4px);
    background: rgba(212, 175, 55, 0.08);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}
.contact-icon {
    font-size: 28px;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}
.contact-card h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 3px;
}
.contact-card p {
    color: #ccc;
    font-size: 14px;
    margin: 0 !important;
}
