/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0d13;
    color: white;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */
}


/* Navbar Styles */

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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
}


/* Navbar Container */

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

body {
    font-family: "Poppins", sans-serif;
    background: #0a0a0a;
    color: #fff;
}


/* Navbar Container */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}


/* Logo */

.logo a {
    text-decoration: none;
    color: #ffcc00;
    font-size: 1.5rem;
    font-weight: 600;
}


/* Nav Links */

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #ffcc00;
}


/* Hover underline */

.nav-links a::after {
    content: "";
    width: 0;
    height: 2px;
    background: #ffcc00;
    position: absolute;
    left: 50%;
    bottom: -5px;
    transition: width 0.3s, left 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}


/* Dropdown */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #222;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 160px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown-menu a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    color: #ffcc00;
}


/* Hamburger Icon */

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #ffcc00;
}


/* Responsive */

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        text-align: center;
        padding: 20px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
    }
    .dropdown-menu {
        position: static;
        background: none;
        display: none;
    }
    .dropdown.active .dropdown-menu {
        display: block;
    }
    .menu-toggle {
        display: block;
    }
}


/* Hero Section */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/gray\ mic.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Dark overlay */

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}


/* Hero Content */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeIn 2s ease-in-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffcc00, #ff6600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}


/* Buttons */

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #000;
    padding: 12px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.btn i {
    margin-left: 8px;
}

.btn:hover {
    background: #ffdb4d;
    transform: scale(1.05);
}


/* Secondary Button */

.btn.secondary {
    background: transparent;
    border: 2px solid #ffcc00;
    color: #ffcc00;
}

.btn.secondary:hover {
    background: #ffcc00;
    color: #000;
}


/* Floating Music Icons */

.floating-icons {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.floating-icons i {
    font-size: 25px;
    color: #ffcc00;
    animation: floatAnimation 3s infinite ease-in-out alternate;
}


/* Floating animation */

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}


/* Fade In Animation */

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* step-2 */


/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0d13;
    color: white;
}


/* About Section */

.about-section {
    width: 100%;
    padding: 80px 10%;
    background: url('../images/blue\ light\ with\ mic.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}


/* Adding a dark overlay for better readability */

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}


/* About Container */

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    /* Enables responsiveness */
}


/* Image Styling */

.image-container {
    position: relative;
    width: 45%;
    min-width: 300px;
    /* Ensures it stays visible on small screens */
}

.image-container img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


/* Floating Music Icons */

.music-icons {
    position: absolute;
    top: 10%;
    left: 10%;
    display: flex;
    gap: 15px;
}

.music-icons i {
    font-size: 24px;
    color: #ffcc00;
    animation: floatAnimation 3s infinite ease-in-out alternate;
}


/* Animation */

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}


/* About Content */

.about-content {
    width: 50%;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
}

.about-content h2 span {
    color: #ffcc00;
}

.about-content p {
    font-size: 1rem;
    margin: 15px 0;
    line-height: 1.6;
    opacity: 0.9;
    color: white;
}


/* Stats Section */

.stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Ensures responsiveness */
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    min-width: 120px;
    /* Ensures it doesn’t shrink too much */
    transition: transform 0.3s;
}

.stat-box:hover {
    transform: scale(1.05);
}

.stat-box i {
    font-size: 30px;
    color: #ffcc00;
}

.stat-box h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: white;
}

.stat-box p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: white;
}


/* Responsive Design */

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .image-container {
        width: 80%;
        margin-bottom: 20px;
    }
    .about-content {
        width: 90%;
    }
    .stats {
        flex-direction: column;
        align-items: center;
    }
    .stat-box {
        width: 80%;
        margin-bottom: 10px;
    }
}


/* achievements 001 */


/* .achievements {
    text-align: center;
    padding: 100px 20px;
    background: url('music-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.achievements::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FFD700;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.achievements-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.achievement-card {
    width: 220px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
} */


/* achievements 002 */

.achievements {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f8c102;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card i {
    font-size: 3rem;
    color: #f8c102;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.achievement-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

.achievement-card p {
    font-size: 1rem;
    font-weight: 300;
}

.achievement-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 199, 0, 0.3);
}

.achievement-card:hover i {
    transform: rotate(10deg);
}


/* Floating Icons */

.floating-icons i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    animation: floatAnimation 5s infinite alternate ease-in-out;
}

.floating-icons i:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20px);
        opacity: 1;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .achievement-card {
        padding: 20px;
    }
}


/* custome css of icons */


/* Unique Floating Icons for Performances & Events */

.floating-music-icons i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    animation: floatMusicIcons 5s infinite alternate ease-in-out;
}

.floating-music-icons i:nth-child(1) {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.floating-music-icons i:nth-child(2) {
    top: 15%;
    right: 15%;
    animation-delay: 1s;
}

.floating-music-icons i:nth-child(3) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-music-icons i:nth-child(4) {
    bottom: 10%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatMusicIcons {
    0% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20px);
        opacity: 1;
    }
}


/* Performances & Events */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
body {
    font-family: 'Poppins', sans-serif;
    background: #0a0f1e;
    color: #fff;
    margin: 0;
    padding: 0;
}

.events {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #f8c102;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.event-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 15px;
}

.event-card p {
    font-size: 1rem;
    font-weight: 300;
}

.event-date {
    font-size: 0.9rem;
    color: #f8c102;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.event-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 20px rgba(255, 199, 0, 0.3);
}


/* Live Badge */

.upcoming {
    position: relative;
    border: 2px solid #f8c102;
}

.live-badge {
    background: #f8c102;
    color: #0a0f1e;
    font-weight: 600;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}


/* Event Timeline */

.event-timeline {
    margin-top: 50px;
    border-left: 3px solid #f8c102;
    padding-left: 20px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-date {
    background: #f8c102;
    color: #0a0f1e;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

.timeline-item p {
    font-size: 1rem;
    font-weight: 300;
    margin-top: 10px;
}


/* Floating Icons */

.floating-icons i {
    font-size: 50px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    animation: floatAnimation 5s infinite alternate ease-in-out;
}

.floating-icons i:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-icons i:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icons i:nth-child(3) {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icons i:nth-child(4) {
    bottom: 10%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(-20px);
        opacity: 1;
    }
}


/* Responsive */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .event-card {
        padding: 20px;
    }
}


/* 🎨 🔧 Updated CSS (events.css) foreignObject */


/* Performances & Events */


/* General Reset */

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

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
}


/* Timeline Section */

.timeline-section {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
}


/* Section Title */

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: gold;
    margin-bottom: 40px;
    text-transform: uppercase;
}


/* Timeline Container */

.timeline-container {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 50px;
}


/* Timeline Items */

.timeline-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


/* On Scroll Animation */

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Alternate Left-Right Design */

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


/* Timeline Content */

.timeline-content {
    width: 45%;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    text-align: center;
}

.timeline-content h3 {
    font-size: 22px;
    color: gold;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 16px;
    color: white;
    opacity: 0.9;
}


/* Timeline Image */

.timeline-image {
    width: 45%;
    max-width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}


/* Hover Effect */

.timeline-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8);
}


/* Center Line */

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, gold, transparent);
    transform: translateX(-50%);
}


/* Responsive Design */

@media screen and (max-width: 768px) {
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    .timeline-content,
    .timeline-image {
        width: 95%;
    }
    .timeline-container::before {
        left: 5%;
    }
}


/* gallery */


/* General Styling */


/* Section Title */

.section-title {
    font-size: 2rem;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}


/* Gallery Grid */

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}


/* Gallery Items */

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
    transform: scale(1.05);
}


/* Lightbox Styles */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}


/* Close Button */

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}


/* Navigation Buttons */

.prev,
.next {
    position: absolute;
    top: 50%;
    font-size: 2rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.prev:hover,
.next:hover,
.close:hover {
    color: #ffcc00;
}


/* video sectiion */


/* Video Section */

.video-section {
    text-align: center;
    padding: 80px 10%;
    background: #0b0c10;
    color: white;
}


/* Video Grid */

.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* Video Container */

.video-container {
    position: relative;
    width: 30%;
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

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


/* Play Icon */

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: #ffcc00;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.play-icon:hover {
    color: white;
}


/* Video Modal */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}


/* Video Wrapper */

.video-wrapper {
    position: relative;
    width: 80%;
    max-width: 900px;
}


/* Video Player */

.video-wrapper video {
    width: 100%;
    border-radius: 10px;
}


/* Close Button */

.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ffcc00;
}


/* Responsive */

@media (max-width: 768px) {
    .video-grid {
        flex-direction: column;
        align-items: center;
    }
    .video-container {
        width: 90%;
    }
    .play-icon {
        font-size: 40px;
        padding: 15px;
    }
}


/* footer */


/* Footer Styles */

.footer {
    background: #111;
    color: #fff;
    padding: 50px 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}


/* Logo Section */

.footer-logo {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 10px;
}


/* Quick Links */

.footer-links {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
}


/* Social Media */

.footer-social {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}


/* Footer Bottom */

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
        width: 100%;
    }
}