/* ---------------- Reset & Base ---------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* ---------------- Header (FIXED) ---------------- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background: #000;
    border-bottom: 1px solid #222;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img { height: 40px; width: auto; }

.logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #888;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover, nav a.active { color: #c1914b; }

/* ---------------- Top Banner (FIXED) ---------------- */
.top-banner {
    width: 100%;
    background: #000;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    position: fixed;
    top: 81px; /* Header height offset */
    z-index: 999;
}

.top-banner span {
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 100%;
    animation: scrollText 15s linear infinite;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-150vw); }
}

/* ---------------- Hero / About Section ---------------- */
.abouthero {
    padding: 50px 80px;
    margin-top: 121px; /* Header + Banner offset */
    min-height: calc(100vh - 121px);
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("image/about.jpeg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.abouthero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    width: 100%;
}

.abouthero-text {
    flex: 1;
    min-width: 300px;
    max-width: 50%;
}

.abouthero-text, .abouthero-right text {
    flex: 1;
    min-width: 300px;
}

.abouthero-text h1, .abouthero-right h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.abouthero-text span, .abouthero-right span {
    color: #c1914b;
    font-style: italic;
}

.abouthero-text p, .abouthero-right p {
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
    font-weight: bold;
}

.btn{
    background:#c1914b;
    padding:10px 15px;
    text-decoration:none;
    color:white;
    border-radius:12px;
    transition:0.3s ease;
    display:inline-block;
    font-size:16px;
    min-width:150px;
    text-align:center;
}

.btn:hover{
    background:#ff9500;
    box-shadow:0 0 15px rgba(255,122,0,0.6);
    transform:translateY(-3px);
}

.abouthero-text p {
    color: #aaa;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
    font-weight: bold;
}

.abouthero-right {
    flex: 1;
    min-width: 300px;
    margin-left: auto;
    max-width: 45%;
}

.abouthero-right img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* ---------------- Stats ---------------- */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    align-items: center;
}

.rating-number {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats h2 {
    font-size: 40px;
    color: #c1914b;
    line-height: 1;
}

.stars {
    color: #c1914b;
    font-size: 24px;
    display: flex;
}

/* ---------------- Footer ---------------- */
footer {
    padding: 30px 80px;
    background: #000;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links { display: flex; gap: 25px; }
.social-item {
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.social-item:hover { color: #c1914b; }

/* ---------------- MOBILE RESPONSIVE (PHONE VIEW) ---------------- */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        height: auto;
    }

    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    nav a { margin: 0 5px; font-size: 14px; }

    .top-banner {
        top: 105px; /* Mobile header height adjustment */
        font-size: 16px;
    }

    .abouthero {
        margin-top: 145px;
        padding: 40px 20px;
        text-align: center;
    }

    .abouthero-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .abouthero-text {
        max-width: 100%;
        min-width: unset;
    }

    .abouthero-text h1 { font-size: 32px; }
    .abouthero-text p { font-size: 16px; text-align: center; }

    .abouthero-right {
        max-width: 100%;
        min-width: unset;
    }

    .stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stats h2 { font-size: 30px; }

    footer { padding: 30px 20px; }
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}