@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&family=Pacifico&display=swap');

@font-face {
    font-family: 'Magnolia Script';
    src: url('../fonts/MagnoliaScript.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}

body {
    background: #3b3b3b;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.green {
    color: #2ecc71;
}

section {
    padding: 60px 0;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
}

.logo img {
    height: 60px;
    /* Slightly larger base height for the new stylized logo */
    width: auto;
    display: block;
}

.menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

.btn {
    background: #2ecc71;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

/* NAVBAR DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #2f2f2f;
    min-width: 130px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 20;
    border-radius: 10px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    margin-top: 10px;
}

.dropdown-content a {
    margin: 0 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    color: white;
    font-weight: 500;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: #2ecc71;
}

.dropdown-content.show {
    display: block;
}

/* TEXT LOGO */
.text-logo {
    text-decoration: none;
    font-family: 'Magnolia Script', cursive;
    color: #2ecc71;
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 1px;
}

/* HERO VIDEO BACKGROUND */
.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 40px;
    box-sizing: border-box;
    z-index: 1;
}

.stby {
    text-align: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.red-dot {
    color: #ff3333;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.hero-title {
    font-family: 'Magnolia Script', cursive;
    font-size: 8rem;
    font-weight: normal;
    margin-bottom: 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.btn-play {
    display: inline-block;
    background: #2ecc71;
    color: white;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.6);
}

.zoom {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* CARD */
.card {
    background: #2f2f2f;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
}

.card-square {
    height: auto;
    aspect-ratio: 1 / 1;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
}

.card-content h3 {
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for wider cards */
    gap: 25px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.merch-img {
    width: 100%;
    max-width: 300px;
    /* Limit size */
    aspect-ratio: 1 / 1;
    /* Force square */
    object-fit: contain;
    /* Ensure full image is visible */
    background: #000;
    /* Dark background to fill gaps */
    border-radius: 20px;
}

/* FOOTER */
footer {
    background: #2ecc71;
    padding: 60px 20px;
    text-align: center;
    width: 100% !important;
    max-width: none !important;
    margin: 80px 0 0 0 !important;
    border-radius: 0 !important;
    display: block !important;
}

footer h2 {
    font-family: Pacifico;
}

.social {
    margin: 20px 0;
}

.social img {
    width: 40px;
    height: 40px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social img:hover {
    transform: scale(1.1);
}

/* COMMENT SECTION & CONTACTS */
.comment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
    align-items: stretch;
}

.form-inputs {
    display: flex;
    flex-direction: column;
}

.input-field {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: none;
    background: #fff;
    font-size: 1rem;
    color: #333;
    outline: none;
}

.input-area {
    width: 100%;
    height: 200px;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: #fff;
    font-size: 1rem;
    color: #333;
    resize: none;
    outline: none;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Push button to bottom */
    padding-bottom: 5px;
    /* Alignment tweak */
}

.btn-submit {
    margin-top: 20px;
    border: none;
    cursor: pointer;
    background: #2ecc71;
    color: #fff;
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-end;
}

.btn-submit:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: auto;
    /* Push contacts to top/center area */
    justify-content: center;
    flex-grow: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.15rem;
    color: #fff;
}

.contact-icon {
    width: 28px;
    height: 28px;
    background: #2ecc71;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-icon.linkedin {
    border-radius: 4px;
    font-size: 0.8rem;
}

.contact-icon.instagram {
    border-radius: 6px;
    position: relative;
}

.ig-inner {
    width: 14px;
    height: 14px;
    border: 1.5px solid white;
    border-radius: 4px;
}

.ig-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    border: 1.5px solid white;
    border-radius: 50%;
}

.ig-inner::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .comment-grid {
        grid-template-columns: 1fr;
    }

    .btn-submit {
        width: 100%;
        max-width: none;
    }
}