/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #2c3e50;
    --light-text: #ecf0f1;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #2c3e50, #3498db);
    --gradient-secondary: linear-gradient(135deg, #e74c3c, #c0392b);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f8f9fa;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: none;
    z-index: 10000;
}

.nav-links {
    display: flex;
    list-style: none;
    z-index: 10000;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-shadow: none;
}

.nav-links a:hover {
    background: rgba(44, 62, 80, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.hero {
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center center; /* Keeps the image centered */
    background-attachment: fixed; /* Keeps the image fixed when scrolling (optional) */
    height: 100vh; /* Ensures the section takes up the full viewport height */
    width: 100%; /* Ensures the section takes up the full width of the page */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin-top: 80px; /* Add margin to account for fixed navbar */
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.tagline {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 5rem 1rem;
}

section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
}

/* About Section */
.about {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 152, 219, 0.05));
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
}

.about-achievements {
    margin-top: 2rem;
}

.about-achievements h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-achievements ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    list-style: none;
}

.about-achievements li {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.about-achievements li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.achievement-text {
    font-size: 1.1rem;
    color: var(--text-color);
}

.expertise {
    margin-top: 2rem;
}

.expertise h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 90%;
}

.image-caption p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.image-caption span {
    color: var(--text-color);
    font-size: 1rem;
}

@media screen and (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .about-achievements ul {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }

    .about-intro {
        font-size: 1.1rem;
    }

    .achievement-number {
        font-size: 2rem;
    }

    .achievement-text {
        font-size: 1rem;
    }

    .expertise-item {
        padding: 1.5rem;
    }

    .image-caption {
        position: relative;
        bottom: 0;
        margin-top: 1rem;
        transform: none;
        left: 0;
        width: 100%;
    }
}

/* Contact Section */
.contact {
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    opacity: 0.05;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.social-link.instagram { background: #E4405F; }
.social-link.youtube { background: #FF0000; }
.social-link.spotify { background: #1DB954; }
.social-link.whatsapp { background: #25D366; }
.social-link.facebook { background: #1877F2; }

/* Footer */
footer {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
    z-index: 10000;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 9999;
        width: 100%;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 1;
    }

    .nav-links a {
        color: var(--primary-color);
        font-size: 1.2rem;
        text-shadow: none;
    }

    /* Hero Section */
    .hero-content {
        margin-top: 60px;
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .skills ul {
        grid-template-columns: 1fr;
    }

    /* Gallery Section */
    .video-grid, .reels-grid, .spotify-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .video-item, .reel-item, .spotify-item {
        margin-bottom: 2rem;
    }

    /* Contact Section */
    .contact-content {
        padding: 0 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Section Headers */
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .gallery-section h3 {
        font-size: 1.8rem;
    }

    /* Footer */
    footer {
        padding: 1.5rem;
    }

    /* YouTube and Spotify Buttons */
    .youtube-channel .btn,
    .spotify-channel .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .burger {
        display: block;
        z-index: 10000;
    }

    .hero-content {
        margin-top: 60px; /* Slightly less margin for mobile */
    }

    .hero h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .video-grid, .reels-grid, .spotify-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section h3 {
        font-size: 1.8rem;
    }

    .nav-active {
        transform: translateX(0%);
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Landscape Mode */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem;
    }

    .hero-content {
        margin-top: 40px;
    }

    .nav-links {
        padding: 2rem 0;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

/* YouTube Section */
.youtube-section {
    margin-top: 4rem;
    text-align: center;
}

.youtube-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-channel {
    margin-top: 2rem;
}

.youtube-channel .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ff0000;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-channel .btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.youtube-channel .btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Spotify Section */
.spotify-section {
    margin-top: 4rem;
    text-align: center;
}

.spotify-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
}

.spotify-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
}

.spotify-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.spotify-item {
    background: var(--white);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 152px; /* Fixed height for Spotify embed */
}

.spotify-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.spotify-item iframe {
    width: 100%;
    height: 152px; /* Fixed height for Spotify embed */
    border: none;
    border-radius: 10px;
    background: transparent;
}

.spotify-channel {
    text-align: center;
    margin-top: 2rem;
}

.spotify-channel .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #1DB954;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.spotify-channel .btn:hover {
    background: #1ed760;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 185, 84, 0.2);
}

.spotify-channel .btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .spotify-grid {
        grid-template-columns: 1fr;
    }
    
    .spotify-section h3 {
        font-size: 1.8rem;
    }
}

/* Instagram Reels Section */
.reels-section {
    margin: 4rem 0;
    text-align: center;
}

.reels-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.reel-item {
    position: relative;
    padding-bottom: 125%; /* 4:5 Aspect Ratio for Instagram Reels */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: var(--white);
}

.reel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

@media screen and (max-width: 768px) {
    .reels-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Gallery Section */
#gallery {
    background: var(--white);
    padding: 5rem 1rem;
}

#gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.gallery-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gradient-secondary);
    margin: 1rem auto;
}

/* YouTube Videos Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--white);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Instagram Reels Grid */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reel-item {
    position: relative;
    padding-bottom: 125%; /* 4:5 Aspect Ratio for Instagram Reels */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    background: var(--white);
}

.reel-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.reel-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* YouTube Channel Button */
.youtube-channel {
    text-align: center;
    margin-top: 2rem;
}

.youtube-channel .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #ff0000;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.youtube-channel .btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.youtube-channel .btn i {
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .video-grid,
    .reels-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section h3 {
        font-size: 1.8rem;
    }
} 
