/* Font Face Declarations */
@font-face {
    font-family: 'Horizon';
    src: url('../fonts/horizon-webfont.woff2') format('woff2'),
         url('../fonts/horizon-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrF.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('https://fonts.gstatic.com/s/glacialindifference/v12/AYROpXzU4N4OQVnQhqpOrI4By3y2k0oKNLj.woff2') format('woff2');
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1e1b18;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Glacial Indifference', sans-serif;
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #7f2f2f, #ff6b6b, #7f2f2f);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(30, 27, 24, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(127, 47, 47, 0.5));
    transition: transform 0.3s ease;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #7f2f2f;
    text-shadow: 0 0 5px rgba(127, 47, 47, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #7f2f2f, #ff6b6b);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1e1b18 0%, #2a2520 50%, #1e1b18 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 27, 24, 0.8) 0%,
        rgba(30, 27, 24, 0.6) 25%,
        rgba(127, 47, 47, 0.3) 50%,
        rgba(30, 27, 24, 0.7) 75%,
        rgba(30, 27, 24, 0.9) 100%
    );
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(30, 27, 24, 0.4) 70%,
        rgba(30, 27, 24, 0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-size: 4rem;
    font-weight: normal;
    font-family: 'Horizon', 'Glacial Indifference', sans-serif;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7f2f2f, #ff6b6b, #7f2f2f);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(127, 47, 47, 0.5); }
    to { text-shadow: 0 0 30px rgba(127, 47, 47, 0.8), 0 0 40px rgba(255, 107, 107, 0.3); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #7f2f2f, #ff6b6b);
    color: white;
    box-shadow: 0 4px 15px rgba(127, 47, 47, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 47, 47, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #7f2f2f;
}

.btn-secondary:hover {
    background: #7f2f2f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e1b18 0%, #2a2520 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Raleway', sans-serif;
}

.about-image {
    display: flex;
    justify-content: center;
}

.band-logo {
    width: 300px;
    height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(127, 47, 47, 0.3));
    transition: transform 0.3s ease;
}

.band-logo:hover {
    transform: scale(1.05);
}

/* Videos Section */
.videos {
    padding: 100px 0;
    background: #1e1b18;
}

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

.video-item {
    background: linear-gradient(135deg, #2a2520, #1e1b18);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px; /* Increased maximum width for larger screens */
    height: 0;
    padding-bottom: 56.25%; /* Creates responsive 16:9 aspect ratio (9/16 = 0.5625) */
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto 1rem auto; /* Centers the video */
    aspect-ratio: 16/9; /* Ensures proper widescreen ratio */
    align-self: center; /* Ensures the video wrapper is centered within its flex container */
}

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

.video-item h3 {
    color: #7f2f2f;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.video-item p {
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
}

/* Music Section */
.music {
    padding: 100px 0;
    background: linear-gradient(180deg, #1e1b18 0%, #2a2520 100%);
}

.music-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.platform-grid, .social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.platform-link, .social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #2a2520, #1e1b18);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-link:hover, .social-link:hover {
    transform: translateY(-5px);
    border-color: #7f2f2f;
    box-shadow: 0 10px 30px rgba(127, 47, 47, 0.2);
}

.platform-link i, .social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #7f2f2f;
}

.platform-link span, .social-link span {
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Raleway', sans-serif;
}

.music-content h3 {
    color: #7f2f2f;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #1e1b18;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    color: #7f2f2f;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #cccccc;
    font-family: 'Raleway', sans-serif;
}

.contact-item i {
    font-size: 1.2rem;
    color: #7f2f2f;
    margin-right: 1rem;
    width: 20px;
}

.contact-form {
    background: linear-gradient(135deg, #2a2520, #1e1b18);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7f2f2f;
    background: rgba(255, 255, 255, 0.15);
}

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

/* Footer */
.footer {
    background: #1e1b18;
    padding: 2rem 0;
    border-top: 1px solid #7f2f2f;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    color: #7f2f2f;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #cccccc;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7f2f2f;
}

.footer-bottom {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    font-family: 'Raleway', sans-serif;
}

/* Large screens - ensure proper video ratio */
@media (min-width: 1200px) {
    .video-wrapper {
        max-width: 900px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .video-wrapper {
        max-width: 850px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .video-wrapper {
        max-width: 750px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 27, 24, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .about-text {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .band-logo {
        width: 250px;
        height: 250px;
    }
    
    .music-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-wrapper {
        max-width: 100%;
        margin: 0 1rem 1rem 1rem;
    }
    
    .platform-grid,
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.8rem;
    }
    
    .platform-link, .social-link {
        padding: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 6px 12px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .band-logo {
        width: 200px;
        height: 200px;
    }
    
    .video-wrapper {
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .platform-grid,
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }
    
    .platform-link, .social-link {
        padding: 0.8rem;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .nav-logo-img {
        height: 40px;
    }
}

/* Extra small devices (phones, less than 400px) */
@media (max-width: 400px) {
    .container {
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 4px 8px;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 0 10px;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .band-logo {
        width: 150px;
        height: 150px;
    }
    
    .video-wrapper {
        margin: 0 0.25rem 1rem 0.25rem;
    }
    
    .platform-grid,
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 0.3rem;
    }
    
    .platform-link, .social-link {
        padding: 0.6rem;
        font-size: 0.7rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .about-text {
        padding: 0 0.5rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}
