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

body {
    font-family: "Instrument Serif", serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #000000 50%, #0f0f0f 75%, #1a1a1a 100%);
    background-attachment: fixed;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 12px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 100;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }

p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 100;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo h2 {
    font-size: 2rem;
    font-weight: 100;
    margin: 0;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: none;
}

/* Hide all nav items except Shop */
.nav-menu li:not(:has(.nav-link[href="shop.html"])) {
    display: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 100;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: #000000;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.nav-link::after {
    display: none;
}

/* Hamburger Menu */
.hamburger {
    display: none;
}

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

.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 100;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    color: #000000;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: block;
    padding: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #000000 50%, #0f0f0f 75%, #1a1a1a 100%);
    position: relative;
    overflow: visible;
}

.hero::before {
    display: none;
}

/* Content Section */
.content-section {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
}

.content-container {
    max-width: 700px;
    margin: 0 auto;
}

.content-title {
    font-size: 3.5rem !important;
    margin-bottom: 0.5rem;
    font-weight: 100;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.content-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    font-weight: 100;
    line-height: 1.5;
    max-width: 500px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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


.hero-visual {
    display: none;
}

/* Page Hero Sections */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* About Preview Section */
.about-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.about-preview .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.about-content h2 {
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.2rem;
}

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

/* Shop Content */
.shop-content {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

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

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.product-image {
    margin-bottom: 1rem;
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 100;
    color: #ffffff;
    margin-top: 1rem;
    display: block;
}

/* Photos Gallery */
.photos-gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

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

.photo-item {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Music Player */
.music-player {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

.player-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
}

.track-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.track-info h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.progress {
    width: 30%;
    height: 100%;
    background: #ffffff;
    border-radius: 2px;
}

.time {
    font-size: 0.9rem;
    opacity: 0.8;
    min-width: 80px;
}

/* Music Library */
.music-library {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
}

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

.track-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    transition: all 0.3s ease;
}

.track-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.track-cover {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.cover-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

.track-details {
    flex: 1;
}

.track-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.track-details p {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Subscription Plans */
.subscription-plans {
    padding: 100px 0;
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

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

.plan-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.featured {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 100;
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    opacity: 0.7;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.8;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #111111;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 1;
}

/* Landing Page Styles */
.landing-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #000000 50%, #0f0f0f 75%, #1a1a1a 100%);
    position: relative;
}

.landing-container::before {
    display: none;
}

/* Hero with Background Image */
.hero-with-bg {
    background-image: url('IMG_4360.jpeg');
    background-size: 80%;
    background-position: center 40%;
    background-repeat: no-repeat;
    position: relative;
    height: 100vh;
    width: 100%;
}

.hero-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-with-bg .hero-content {
    position: relative;
    z-index: 2;
}

.hero-with-bg .hero-visual {
    position: relative;
    z-index: 2;
}

.landing-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
}

.landing-name {
    font-size: 7rem;
    font-weight: 100;
    margin: 0;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.enter-button {
    display: inline-block;
    text-decoration: none;
    font-weight: 100;
    transition: all 0.4s ease;
    color: #ffffff;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    font-family: sans-serif;
    z-index: 2;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.enter-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
}

/* Navigation Page Styles */
.navigation-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
}

.navigation-container::before {
    display: none;
}

.navigation-content {
    text-align: center;
    z-index: 2;
}

.navigation-title {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 4rem;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.nav-item {
    display: block;
    text-decoration: none;
    font-weight: 100;
    transition: all 0.4s ease;
    color: #ffffff;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-family: sans-serif;
    text-align: center;
    margin: 1rem 0;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    color: #ffffff;
}

/* Responsive Design */

/* Large screens and landscape tablets */
@media (max-width: 1200px) {
    .hero {
        padding: 0;
        height: 100vh;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 80%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 50px 20px;
    }
    
    .content-container {
        max-width: 600px;
    }
    
    .content-title {
        font-size: 3.2rem !important;
    }
    
    .content-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Tablets and smaller laptops */
@media (max-width: 1024px) {
    .hero {
        padding: 0;
        height: 100vh;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 80%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 40px 20px;
    }
    
    .content-title {
        font-size: 3rem !important;
        padding: 0.8rem 1.2rem;
    }
    
    .content-subtitle {
        font-size: 1.4rem;
        padding: 0.7rem 1rem;
    }
    
    .hero-title {
        font-size: 3rem !important;
        padding: 0.8rem 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        padding: 0.7rem 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero {
        padding: 0;
        height: 100vh;
        display: block;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 80%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .content-container {
        max-width: 400px;
    }
    
    .content-title {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem;
    }
    
    .content-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 0.5rem;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.9);
        padding: 0.8rem 1.2rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0;
        font-weight: 100;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.9);
        padding: 0.6rem 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        display: block;
    }
    
    .hero-buttons {
        position: static;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .landing-name {
        font-size: 4rem;
    }
    
    .enter-button {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .navigation-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .nav-item {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        min-width: 160px;
    }
}

/* Landscape phones and small tablets */
@media (max-width: 600px) {
    .hero {
        padding: 0;
        height: 100vh;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 100%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 25px 15px;
    }
    
    .content-container {
        max-width: 400px;
    }
    
    .content-title {
        font-size: 2.2rem !important;
        padding: 0.6rem 1rem;
    }
    
    .content-subtitle {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        padding: 0.6rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.5rem 0.8rem;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        max-width: 300px;
    }
}

/* Very short screens (like 1024x600) */
@media (max-height: 700px) {
    .hero {
        padding: 0;
        height: 100vh;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 80%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-title {
        font-size: 2.5rem !important;
        margin-bottom: 0.3rem;
    }
    
    .content-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 0.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0;
        display: block;
    }
    
    .hero-with-bg {
        height: 100vh;
        background-size: 100%;
        background-position: center 40%;
    }
    
    .content-section {
        padding: 20px 15px;
    }
    
    .content-container {
        max-width: 350px;
    }
    
    .content-title {
        font-size: 2rem !important;
        margin-bottom: 0.4rem;
    }
    
    .content-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 2rem !important;
        margin-bottom: 0.4rem;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.9);
        padding: 0.6rem 1rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        display: inline-block;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0;
        font-weight: 100;
        color: #ffffff;
        background: rgba(0, 0, 0, 0.9);
        padding: 0.5rem 0.8rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
        display: block;
    }
    
    .hero-buttons {
        position: static;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 2rem auto 0;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .landing-name {
        font-size: 3rem;
    }
    
    .enter-button {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .navigation-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .nav-item {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
        min-width: 140px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
}
