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

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #E8DCC4;
}

.nav-logo {
    position: fixed;
    top: 0;
    left: 0;
    height: 300px;
    width: auto;
    z-index: 1001;
    transition: opacity 0.3s;
    transform: translateY(-25%);
}

.nav-logo.hidden {
    opacity: 0;
    pointer-events: none;
}

#active {
    display: none;
}

.menu-btn {
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1001;
    width: 50px;
    height: 50px;
    background: #E8DCC4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-btn i {
    color: #000;
    font-size: 1.5rem;
}

.menu-btn:hover {
    transform: scale(1.1);
}

.wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #000;
    clip-path: circle(25px at calc(100% - 75px) 75px);
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

#active:checked ~ .wrapper {
    clip-path: circle(75%);
}

.wrapper ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
}

.wrapper ul li {
    margin: 2rem 0;
}

.wrapper ul li a {
    color: #E8DCC4;
    text-decoration: none;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    padding: 0.5rem 2rem;
    position: relative;
    transition: all 0.3s;
}

.wrapper ul li a:hover {
    color: #fff;
    text-shadow: 0 0 10px #E8DCC4, 0 0 20px #E8DCC4;
}

#active:checked ~ .menu-btn i:before {
    content: "\f00d";
}

.section {
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
}

.about-section {
    background-color: #E8DCC4;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 1200px;
    padding: 4rem 2rem;
}

.about-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #000;
    transition: width 0.6s ease;
}

.about-section:hover .about-title::after {
    width: 200px;
}

.manifesto-block {
    margin-bottom: 3rem;
    padding: 2rem;
    border-left: 4px solid transparent;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.manifesto-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #000;
    transition: height 0.5s ease;
}

.manifesto-block:hover {
    transform: translateX(15px);
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.manifesto-block:hover::before {
    height: 100%;
}

.manifesto-block:hover p {
    color: #000;
}

.manifesto-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.manifesto-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.manifesto-block:nth-child(2) p { animation-delay: 0.2s; }
.manifesto-block:nth-child(3) p { animation-delay: 0.4s; }
.manifesto-block:nth-child(4) p { animation-delay: 0.6s; }
.manifesto-block:nth-child(5) p { animation-delay: 0.8s; }
.manifesto-block:nth-child(6) p { animation-delay: 1s; }

.manifesto-block.final {
    text-align: center;
    border-left: none;
    margin-top: 4rem;
}

.manifesto-block.final h3 {
    font-size: 2.5rem;
}

.manifesto-block.final p {
    font-size: 1.5rem;
    font-style: italic;
}

.timeline-section {
    background-color: #000;
    color: #E8DCC4;
}

.timeline-section h2 {
    text-align: center;
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 4rem;
    letter-spacing: 3px;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #E8DCC4;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 50%;
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    font-weight: bold;
    color: #E8DCC4;
    text-align: center;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-year {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
    padding-left: 3rem;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #E8DCC4;
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -10px;
}

.timeline-content {
    flex: 0 0 50%;
    padding: 2rem;
    background: rgba(232, 220, 196, 0.1);
    border-radius: 10px;
    border: 1px solid #E8DCC4;
    transition: transform 0.3s, background 0.3s;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 3rem;
}

.timeline-content:hover {
    transform: scale(1.05);
    background: rgba(232, 220, 196, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #E8DCC4;
}

.hero-section {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-tagline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    font-weight: bold;
    color: #E8DCC4;
    text-align: center;
    z-index: 1;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 20px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.9);
    white-space: nowrap;
}


h1, h2 {
    margin-bottom: 2rem;
}

.brands-section {
    background-color: #000;
    overflow: hidden;
    position: relative;
}

.brands-section h2 {
    color: #E8DCC4;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.news-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #E8DCC4;
    transition: transform 0.3s;
}

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

.news-card__card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.news-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-card:first-child .news-card__image {
    filter: brightness(0);
}

.news-card__text-wrapper {
    padding: 1.5rem;
}

.news-card__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #000;
    margin: 0 0 0.5rem 0;
}

.news-card__post-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.news-card__details-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.news-card__excerpt {
    color: #333;
    margin: 0;
}

.news-card__read-more {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.news-card__read-more:hover {
    text-decoration: underline;
}

.investor-section {
    background-color: #E8DCC4;
    color: #000;
    min-height: auto;
    padding: 4rem 2rem;
}

.investor-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.footer {
    background: #000;
    color: #E8DCC4;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #E8DCC4;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

.footer a {
    color: #E8DCC4;
    text-decoration: none;
}

.footer a:hover {
    opacity: 0.7;
}

.card {
    background: #E8DCC4;
    padding: 3rem;
    text-align: center;
    color: #000;
}

.card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.card button {
    background: #000;
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s;
}

.card button:hover {
    transform: scale(1.1);
}

.card button a {
    color: #E8DCC4;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

#footer {
    background: #000;
    color: #E8DCC4;
    padding: 4rem 2rem;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

.col {
    flex: 1;
    min-width: 200px;
}

.col h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.col p {
    margin: 0.5rem 0;
    cursor: pointer;
    transition: color 0.3s;
}

.col p:hover {
    color: #fff;
}

.col a {
    color: #E8DCC4;
    text-decoration: none;
}

.backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.footer-logo {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #E8DCC4;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    color: #000;
}

.modal-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.close {
    color: #000;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #666;
}

#brands-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.brand-card {
    border: 1px solid #E8DCC4;
    padding: 1rem;
}

.brand-card img {
    width: 100%;
    height: auto;
}

.investor-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.investor-text {
    flex: 1;
    text-align: left;
}

.investor-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.investor-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

.investor-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.investor-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

#weather_wrapper {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 2;
}

.weatherCard {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #E8DCC4;
    color: #E8DCC4;
}

.currentTemp {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.temp {
    font-size: 3rem;
    font-family: 'Bebas Neue', sans-serif;
}

.location {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.currentWeather {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.conditions {
    font-size: 2rem;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.contact-section {
    min-height: 60vh;
    background-color: #E8DCC4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    border-top: 2px solid #000;
}

.contact-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    text-align: left;
}

.contact-right {
    flex: 1;
}

.contact-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 2rem;
}

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

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #333;
}

.form-button {
    padding: 1rem 2rem;
    background: #000;
    color: #E8DCC4;
    border: none;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.form-button:hover {
    opacity: 0.8;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.email-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 0;
    text-decoration: none;
    transition: opacity 0.3s;
}

.email-item:hover {
    opacity: 0.7;
}

.email-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
}

.email-address {
    font-size: 1.1rem;
    color: #000;
    font-weight: bold;
}

@media (max-width: 768px) {
    .nav-logo {
        height: 150px;
    }

    .menu-btn {
        top: 1rem;
        right: 1rem;
    }

    .wrapper ul li a {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 2.5rem;
        letter-spacing: 5px;
        white-space: normal;
        padding: 0 1rem;
    }

    .ramadan-counter {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .about-title {
        font-size: 2rem;
    }

    .manifesto-block h3 {
        font-size: 1.3rem;
    }

    .manifesto-block p {
        font-size: 1rem;
    }

    .manifesto-block.final h3 {
        font-size: 1.8rem;
    }

    .manifesto-block.final p {
        font-size: 1.2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-year {
        font-size: 2.5rem;
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 1rem;
    }

    .timeline-year::after {
        left: -40px !important;
        right: auto !important;
    }

    .timeline-content {
        margin: 0 !important;
        width: 100%;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .investor-content {
        flex-direction: column;
        gap: 2rem;
    }

    .investor-text h2 {
        font-size: 2rem;
    }

    .investor-text p {
        font-size: 1rem;
    }

    .investor-logo img {
        max-width: 250px;
    }

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

    .contact-content h2 {
        font-size: 2.5rem;
    }

    .email-address {
        font-size: 0.9rem;
        word-break: break-all;
    }
}
