/* TCHELO Website Styles */

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, 
        #FFD700 0%,     /* Golden yellow */
        #FF6B9D 25%,    /* Pink */
        #8B5CF6 50%,    /* Purple */
        #3B82F6 75%,    /* Blue */
        #1E40AF 100%    /* Deep blue */
    );
    background-attachment: fixed;
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo {
    height: 70px;
    width: auto;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

/* Main Content */

/* Make body take full height */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Main content should expand to fill available space */
main {
  flex: 1;
}

.main-content {
    margin-top: 10px;
    padding: 40px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: -10px 0;
    gap: 40px;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-logo {
    margin-bottom: -120px; /* Increased from -100px to bring text even closer */
}

.hero-logo-img {
    height: 600px; /* Increased from 500px */
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

/* Pulsing animation for logo */
.hero-logo-img {
    animation: pulse 3s ease-in-out infinite; 
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* slight pulse */
    }
    100% {
        transform: scale(1);
    }
}




.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-left: 50px; /* Added left margin to center text with logo */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-left: 50px; /* Added left margin to align with text */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
    flex: 1;
    max-width: 400px; /* Reduced from 500px */
    margin: 80px auto 0 auto; /* Increased from 60px to 80px to move photo down more */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Glass Tile Effect */
.glass-tile {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-tile:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1px 0;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Center the 4th item when it's the last child and there are exactly 4 items - only on larger screens */
@media (min-width: 769px) {
    .content-item:nth-child(4):last-child {
        grid-column-start: 2;
    }
}

.content-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.content-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-item .placeholder-content {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 40px 20px;
    margin: 15px 0;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

/* Audio Player Styles */
.audio-player {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.audio-player .play-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-player .play-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.audio-player .waveform {
    flex: 1;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.audio-player .track-info {
    text-align: left;
}

.audio-player .track-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.audio-player .track-artist {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Video Thumbnail Styles */
.video-thumbnail {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px 0;
    background: rgba(0, 0, 0, 0.3);
    aspect-ratio: 16/9;
}

.video-thumbnail .placeholder-video {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.video-thumbnail .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail .play-overlay:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-thumbnail .play-overlay::after {
    content: '▶';
    color: #333;
    font-size: 24px;
    margin-left: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-content {
        padding: 20px;
        margin-top: 120px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    /* Mobile responsive hero logo */
    .hero-logo {
        margin-bottom: -60px; /* Reduced negative margin for mobile */
    }
    
    .hero-logo-img {
        height: 300px; /* Reduced from 600px for mobile */
        width: auto;
    }
    
    /* Mobile responsive hero text */
    .hero-description {
        margin-left: 0; /* Remove left margin on mobile */
        font-size: 1rem;
    }
    
    .cta-button {
        margin-left: 0; /* Remove left margin on mobile */
    }
    
    .hero-image {
        margin: 20px auto 0 auto; /* Reduced top margin for mobile */
        max-width: 300px; /* Smaller max width for mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo-img {
        height: 200px; /* Even smaller for very small screens */
    }
    
    .hero-logo {
        margin-bottom: -40px; /* Adjust margin for smaller logo */
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .nav-links a {
        font-size: 14px;
        padding: 6px 12px;
    }
}



/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: none; /* Removed border that was causing weird lines */
}

.call-button {
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.call-button:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.whatsapp-button {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: linear-gradient(45deg, #128C7E, #25D366);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.email-button {
    background: linear-gradient(45deg, #FF6B6B, #FF5252);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.email-button:hover {
    background: linear-gradient(45deg, #FF5252, #FF6B6B);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.contact-info {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Social Media Styles */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.social-item {
    text-align: center;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.social-item p {
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 0.95rem;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.instagram-button:hover {
    background: linear-gradient(45deg, #E4405F, #C13584);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.facebook-button:hover {
    background: linear-gradient(45deg, #1877F2, #166FE5);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.youtube-button:hover {
    background: linear-gradient(45deg, #FF0000, #CC0000);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.soundcloud-button:hover {
    background: linear-gradient(45deg, #FF8C00, #FF7700);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.button-icon {
    font-size: 1.2rem;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .contact-item, .social-item {
        padding: 25px 20px;
    }
    
    .footer-content {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
}


/* Page-specific spacing adjustments */
/* Music, Video, and Contact pages need more top spacing to avoid navbar overlap */
.content-section:first-child {
    margin-top: 60px;
}

/* Keep index page hero section compact */
.hero-section {
    margin-top: 0;
}

/* Reduce gap between navbar and content specifically for index page - desktop only */
@media (min-width: 769px) {
    body:has(.hero-section) .main-content {
        margin-top: -5px; /* Changed from 5px to -5px for even tighter spacing */
    }
}

/* Alternative approach - target pages by their main headings */
.section-title:first-of-type {
    margin-top: 40px;
}


/* Embedded Player Styles */
.embedded-player {
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.embedded-player iframe {
    display: block;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

/* Ensure embedded content fits well in glass tiles */
.glass-tile .embedded-player {
    margin-bottom: 15px;
}

/* Style for embedded video players */
.embedded-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.embedded-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Notes trail effect */
.note {
  position: absolute;
  pointer-events: none;
  color: hsl(0, 0%, 100%);
  font-size: 18px;
  opacity: 1;
  transform: translate(-50%, -50%);
  animation: fadeOut 1.2s ease-out forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translate(-50%, -80%) scale(0.7);
  }
}

.footer-bottom .credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}
.footer-bottom .credit a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}
.footer-bottom .credit a:hover {
    color: #fff;
    text-decoration: underline;
}
