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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('images/bg-img-2.jpg') no-repeat;
    background-position: top;
    background-size: cover;
    color: #ffffff;
    line-height: 1.6;
    padding-top: 70px;
}

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

/* Navigation Header */
.navbar {
    background-color: transparent;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(33, 10, 14, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6600;
    text-transform: lowercase;
    height: 44px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 44px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ff6600;
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 22px;
    cursor: pointer;
    align-items: center;
}

.nav-icons i {
    transition: color 0.3s ease;
}

.nav-icons i:hover {
    color: #ff6600;
}

.nav-icon-img {
    height: 22px;
    width: auto;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.nav-icon-img:hover {
    opacity: 0.7;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff6600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-logo {
    height: 152px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-logo img {
    height: 152px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hero-logo-main {
    height: 150px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-main img {
    height: 150px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    color: #ff6600;
    margin-bottom: 20px;
    text-transform: lowercase;
}

.hero-description {
    font-size: 23px;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: brightness(0.9);
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #ff6600;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ff8533;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #ffffff;
}

/* Anthem Spotlight Section */
.spotlight {}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.spotlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 0px 40px rgba(255, 66, 0, 0.5);
}

.spotlight-card:hover {
    transform: translateY(-10px);
}

.spotlight-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 66, 0, 0.9), transparent);
    padding: 20px;
    font-size: 14px;
    color: #ffffff;
    padding-top: 40px;
}

/* Video Section */
.video-section {}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* .video-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 102, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
} */

/* Blogs Section */
.blogs {}

.blogs-container {
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}

.blog-post {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 30px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 15px;
    /* background-color: rgba(255, 102, 0, 0.05); */
    transition: background-color 0.3s ease;
}

.blog-post:hover {
    background-color: rgba(255, 102, 0, 0.1);
}

.blog-image {
    width: 150px;
    height: 150px;
    border-radius: 15px;
    object-fit: cover;
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff6600;
    text-transform: lowercase;
    margin-bottom: 30px;
    height: 100px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 85px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.social-icons {
    display: block;
    align-items: center;
    gap: 15px;
}

.social-icons p {
    margin: 0;
    font-size: 20px;
    padding-bottom: 16px;
}

.social-icons div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #ff6600;
    color: #1a0f0a;
    border-color: #ff6600;
}

.footer-right {
    display: flex;
    gap: 60px;
}

.footer-section div:last-child {
    padding-top: 30px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6600;
}

.footer-section p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 12px;
    color: #fff;
}

/* Responsive Design */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 56px;
    }

    .spotlight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .spotlight-card img {
        height: 280px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .video-card img {
        height: 180px;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .nav-menu {
        gap: 20px;
        font-size: 13px;
    }

    .footer-container {
        gap: 40px;
    }
}

/* Small Tablets & Large Mobile (640px - 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar-container {
        flex-wrap: wrap;
        gap: 10px;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #230b0f;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        display: none;
        z-index: 50;
        border-bottom: 1px solid #5a3a30;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 10px 0;
        border-bottom: 1px solid #5a3a30;
        font-size: 14px;
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-image img {
        max-width: 100%;
        height: auto;
    }

    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .spotlight-card img {
        height: 220px;
    }

    .card-label {
        font-size: 12px;
        padding: 15px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .video-card img {
        height: 150px;
    }

    .blog-post {
        grid-template-columns: 120px 1fr;
        gap: 20px;
        padding: 20px;
    }

    .blog-image {
        width: 120px;
        height: 120px;
    }

    .blog-content h3 {
        font-size: 16px;
    }

    .blog-content p {
        font-size: 13px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    section {
        padding: 60px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-right {
        flex-direction: column;
        gap: 20px;
    }

    .social-icons {
        gap: 10px;
    }
}

/* Mobile (480px - 640px) */
@media (max-width: 640px) {
    body {
        background: url('images/mobile-bg.jpg') no-repeat;
        background-position: top;
        background-size: cover;
    }

    .logo {
        font-size: 20px;        display: none;    }

    .nav-menu {
        gap: 10px;
        font-size: 11px;
    }

    .nav-icons {
        gap: 12px;
        font-size: 14px;
    }

    .hero {
        padding: 40px 0;
        min-height: 80vh;
    }

    .hero-container {
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .spotlight-card img {
        height: 200px;
    }

    .card-label {
        font-size: 12px;
        padding: 12px;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .video-card img {
        height: 150px;
    }

    .blog-post {
        grid-template-columns: 150px 1fr;
        gap: 20px;
        padding: 20px;
        margin-bottom: 20px;
        align-items: center;
    }

    .blog-image {
        width: 150px;
        height: 150px;
        border-radius: 15px;
        object-fit: cover;
        flex-shrink: 0;
    }

    .blog-content h3 {
        font-size: 16px;
        margin-bottom: 10px;
        margin-top: 0;
        color: #ffffff;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        font-size: 12px;
        color: #b0b0b0;
        line-height: 1.5;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    section {
        padding: 40px 0;
    }

    .footer-logo {
        font-size: 24px;
        margin-bottom: 20px;
        height: 80px;
    }

    .footer-logo img {
        height: 80px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .footer-bottom {
        font-size: 10px;
        padding: 15px 10px;
    }

    .hero-logo {
        height: 100px;
        margin-bottom: 15px;
    }

    .hero-logo img {
        height: 100px;
    }
}

/* Small Mobile (under 480px) */
@media (max-width: 480px) {
    body {
        background: url('images/mobile-bg.jpg') no-repeat;
        background-position: top;
        background-size: cover;
    }

    .navbar {
        padding: 12px 0;
        /* border-bottom: 1px solid rgba(255, 102, 0, 0.3); */
    }

    .navbar-container {
        padding: 0 12px;
        flex-direction: row;
    }

    .logo {
        font-size: 18px;
        order: 2;
        flex: 1;
    }

    .nav-menu {
        display: none;
    }

    .nav-icons {
        gap: 15px;
        font-size: 18px;
        order: 1;
    }

    .nav-icons i:first-child {
        order: 2;
    }

    .nav-icons i:nth-child(2) {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
    }

    .nav-icon-img {
        height: 18px;
        width: auto;
        cursor: pointer;
        transition: opacity 0.3s ease;
        order: 3;
        display: none;
    }

    .hamburger {
        order: 3;
    }

    .hero {
        padding: 30px 0;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-container {
        padding: 15px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-logo {
        display: none;
    }

    .hero-logo img {
        display: none;
    }

    .hero-logo-main {
        height: 95px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-logo-main img {
        height: 95px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .hero-title {
        font-size: 48px;
        margin-bottom: 15px;
        display: block;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 25px;
        max-width: 100%;
        text-align: center;
    }

    .btn.btn-primary {
        width: 100%;
        max-width: 300px;
    }

    .hero-image {
        display: none;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .spotlight-grid {
        gap: 12px;
    }

    .spotlight-card img {
        height: 200px;
    }

    .card-label {
        font-size: 11px;
        padding: 12px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .video-card {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
        height: auto;
    }

    .video-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    .video-card::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background-color: rgba(255, 102, 0, 0.9);
        border-radius: 50%;
        z-index: 2;
    }

    .video-card::before {
        content: '▶';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: white;
        z-index: 3;
    }

    .blog-post {
        grid-template-columns: 120px 1fr;
        gap: 12px;
        padding: 12px;
        align-items: center;
    }

    .blog-image {
        width: 120px;
        height: 120px;
        border-radius: 12px;
        flex-shrink: 0;
    }

    .blog-content h3 {
        font-size: 13px;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        font-size: 11px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-content p {
        font-size: 11px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    section {
        padding: 30px 0;
    }

    .container {
        padding: 0 12px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        font-size: 20px;
        margin: 0 auto 15px auto;
    }

    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-icons p {
        width: 100%;
        margin-bottom: 10px;
    }

    .social-icons div {
        justify-content: center;
    }

    .footer-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

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

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-section p {
        font-size: 11px;
        margin-bottom: 5px;
    }

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