/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --accent-bg: #2a2a2a;
    --primary-text: #ffffff;
    --secondary-text: #b0b0b0;
    --accent-color: #9d2137;
    --gold-accent: #9d2137;
    --border-color: #333333;
    --hover-bg: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-text);
    background-color: var(--primary-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--accent-bg);
    color: var(--accent-color);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-text);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('DSC_0373.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Scroll-triggered Vinyl */
.scroll-vinyl {
    position: fixed;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}

.scroll-vinyl:hover {
    opacity: 0.7;
}

.vinyl-record {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #1a1a1a 20%, #0a0a0a 21%, #0a0a0a 40%, #1a1a1a 41%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: none;
    overflow: hidden;
}

.album-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-record.spinning {
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3), 0 0 20px rgba(255, 107, 53, 0.2);
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.vinyl-hole {
    width: 12px;
    height: 12px;
    background: var(--primary-bg);
    border-radius: 50%;
}

.vinyl-grooves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 255, 255, 0.05) 1deg,
        transparent 2deg
    );
}



/* Vinyl Navigation in Hero */
.vinyl-nav {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.vinyl-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.vinyl-nav-record {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #1a1a1a 25%, #0a0a0a 26%, #0a0a0a 45%, #1a1a1a 46%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    animation: vinylSpin 8s linear infinite;
    overflow: hidden;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-album-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
}

.vinyl-nav-item:hover .vinyl-nav-record {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.vinyl-nav-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    z-index: 2;
}

.vinyl-nav-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary-bg);
    border-radius: 50%;
}

.vinyl-nav-label {
    margin-top: 0.75rem;
    color: var(--primary-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.vinyl-nav-item:hover .vinyl-nav-label {
    color: var(--accent-color);
}

/* Vinyl Dropdown */
.vinyl-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    margin-top: 0.5rem;
}

.dropdown-vinyl:hover .vinyl-dropdown {
    opacity: 1;
    visibility: visible;
}

.vinyl-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--primary-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.vinyl-dropdown a:hover {
    background: var(--accent-bg);
    color: var(--accent-color);
    padding-left: 1.5rem;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    margin-top: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-text);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--secondary-text);
    font-weight: 300;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
    font-style: italic;
}

/* About Section */
.about {
    background: var(--secondary-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Music Section */
.music-section {
    background: var(--primary-bg);
}

/* Vinyl Collection Link Box */
.vinyl-collection-link {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.collection-link-box {
    display: block;
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--secondary-bg) 100%);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.2rem 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
}

.collection-link-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.collection-link-box:hover::before {
    left: 100%;
}

.collection-link-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.link-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.link-content > .fas.fa-record-vinyl {
    font-size: 2.2rem;
    color: var(--accent-color);
    animation: spin 8s linear infinite;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-text h3 {
    color: var(--primary-text);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.link-text p {
    color: var(--secondary-text);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

.link-content > .fas.fa-external-link-alt {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.collection-link-box:hover .fas.fa-external-link-alt {
    transform: translateX(5px);
}

.featured-vinyl-title {
    text-align: center;
    color: var(--secondary-text);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vinyl-carousel {
    position: relative;
    margin-bottom: 4rem;
}

.carousel-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.vinyl-item {
    background: var(--accent-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.vinyl-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.vinyl-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.vinyl-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.carousel-btn {
    display: none; /* Hide for now since we're showing all items */
}

.silent-disco {
    background: var(--accent-bg);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.silent-disco h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gold-accent);
    font-size: 1.8rem;
}

.disco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 1rem;
    color: var(--primary-text);
}

.feature p {
    color: var(--secondary-text);
}

/* Afterhours Section */
.afterhours-section {
    background: var(--primary-bg);
    padding: 40px 0;
}

.afterhours-content {
    max-width: 800px;
    max-height: 400px;
    margin: 0 auto;
    padding: 1rem;
    background: var(--accent-bg);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    overflow-y: auto;
    overflow-x: hidden;
}

.afterhours-content::-webkit-scrollbar {
    width: 8px;
}

.afterhours-content::-webkit-scrollbar-track {
    background: var(--secondary-bg);
    border-radius: 10px;
}

.afterhours-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.afterhours-content::-webkit-scrollbar-thumb:hover {
    background: var(--gold-accent);
}

.ae-embed-org-plugin {
    min-height: auto;
}

/* Menu Section */
.menu-section {
    background: var(--secondary-bg);
}

/* Simple Menu Carousel */
.menu-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--accent-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.carousel-content {
    position: relative;
    width: 100%;
    height: 500px;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.carousel-item img:hover {
    transform: scale(1.02);
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: var(--accent-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: white;
}

.modal-image {
    display: block;
    margin: 5% auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* Promise Section */
.promise-section {
    background: var(--primary-bg);
}

.promise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.promise-text h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.promise-text p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background: var(--accent-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    border: 1px solid var(--border-color);
}

.testimonial p {
    color: var(--secondary-text);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial cite {
    color: var(--accent-color);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: var(--secondary-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.info-item h4 {
    color: var(--primary-text);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--secondary-text);
}

.reservation-form {
    background: var(--accent-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.reservation-form h3 {
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-text);
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.2);
}

.submit-btn {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #e55a2b;
}

.social-links {
    text-align: center;
}

.social-links h3 {
    color: var(--primary-text);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-bg);
    color: var(--accent-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer p {
    color: var(--secondary-text);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--secondary-bg);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 2.5rem;
    }
    
    .dropdown-toggle {
        justify-content: center;
    }
    
    /* Vinyl Navigation Mobile */
    .vinyl-nav {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .vinyl-nav-record {
        width: 60px;
        height: 60px;
    }
    
    .vinyl-album-cover {
        width: 38px;
        height: 38px;
    }
    
    .vinyl-nav-center {
        width: 15px;
        height: 15px;
    }
    
    .vinyl-nav-center::after {
        width: 5px;
        height: 5px;
    }
    
    .vinyl-nav-label {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .scroll-vinyl {
        left: -75px;
    }
    
    .vinyl-record {
        width: 150px;
        height: 150px;
    }
    
    .album-cover {
        width: 90px;
        height: 90px;
    }
    
    .vinyl-center {
        width: 30px;
        height: 30px;
    }
    
    .vinyl-hole {
        width: 9px;
        height: 9px;
    }
    
    .collection-link-box {
        padding: 1rem 1.5rem;
    }
    
    .link-content {
        gap: 1.2rem;
    }
    
    .link-content > .fas.fa-record-vinyl {
        font-size: 2rem;
    }
    
    .link-text h3 {
        font-size: 1rem;
    }
    
    .link-text p {
        font-size: 0.8rem;
    }
    
    .about-content,
    .promise-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .carousel-content {
        height: 400px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .disco-features {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    /* Vinyl Navigation Extra Small */
    .vinyl-nav {
        gap: 1rem;
    }
    
    .vinyl-nav-record {
        width: 50px;
        height: 50px;
    }
    
    .vinyl-album-cover {
        width: 32px;
        height: 32px;
    }
    
    .vinyl-nav-center {
        width: 12px;
        height: 12px;
    }
    
    .vinyl-nav-center::after {
        width: 4px;
        height: 4px;
    }
    
    .vinyl-nav-label {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .scroll-vinyl {
        left: -60px;
    }
    
    .vinyl-record {
        width: 120px;
        height: 120px;
    }
    
    .album-cover {
        width: 72px;
        height: 72px;
    }
    
    .collection-link-box {
        padding: 0.8rem 1.2rem;
    }
    
    .link-content {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .link-content > .fas.fa-record-vinyl {
        font-size: 1.8rem;
    }
    
    .link-text {
        text-align: center;
    }
    
    .link-text h3 {
        font-size: 0.95rem;
    }
    
    .vinyl-center {
        width: 24px;
        height: 24px;
    }
    
    .vinyl-hole {
        width: 7px;
        height: 7px;
    }
    
    .carousel-content {
        height: 350px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .modal-image {
        margin: 10% auto;
        max-width: 95%;
    }
}