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

:root {
    --primary-color: #1a1a1a;
    --accent-color: #8b7355;
    --text-color: #2c2c2c;
    --text-light: #6b6b6b;
    --bg-light: #fafafa;
    --bg-cream: #f9f7f4;
    --border-color: #e8e6e3;
    --white: #ffffff;
    --gold: #c9a961;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

/* Header */
.site-header {
    padding: 1rem 3rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
}

.site-header h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin: 0;
    font-style: normal;
    line-height: 1.2;
}

.site-header h1 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: none;
}

.site-header h1 a:hover {
    opacity: 0.7;
    text-decoration: none;
    border-bottom: none;
}

/* Main Wrapper */
.main-wrapper {
    display: flex;
    flex: 1;
    min-height: calc(100vh - 140px);
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

/* Side Navigation */
.side-nav {
    width: 180px;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--border-color);
    background: var(--bg-light);
    flex-shrink: 0;
}

.side-nav ul {
    list-style: none;
}

.side-nav li {
    margin-bottom: 0;
}

.side-nav a {
    display: block;
    text-decoration: none;
    color: var(--text-light);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.35rem 0;
    transition: var(--transition);
    font-weight: 400;
    font-family: 'Raleway', sans-serif;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.side-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition);
}

.side-nav a:hover,
.side-nav a.active {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.side-nav a.active::after,
.side-nav a:hover::after {
    width: 30px;
}

.side-nav h6 {
    font-size: 9px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 2rem 0 0.75rem 0;
    color: var(--text-light);
    letter-spacing: 1.5px;
    font-family: 'Raleway', sans-serif;
}

.side-nav .store-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.side-nav .store-buttons a {
    display: inline-block;
    opacity: 0.7;
    transition: var(--transition);
    padding: 0;
}

.side-nav .store-buttons a:hover {
    opacity: 1;
    transform: translateX(3px);
}

.side-nav .store-buttons img {
    height: 28px;
    width: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 4rem;
    overflow-y: auto;
    max-width: 1400px;
}

/* Home Content */
.home-content {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: grayscale(10%) brightness(0.98);
    max-width: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

.home-image:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.01);
}

/* About Content */
.about-content {
    max-width: 1000px;
}

.about-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.about-content .divider {
    width: 60px;
    margin: 1.5rem 0 2rem 0;
    border: none;
    border-top: 1px solid var(--accent-color);
}

.image-gallery {
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    overflow: hidden;
}

.gallery-images {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-images img {
    width: 100%;
    min-width: 100%;
    height: 500px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
    max-width: 100%;
}

.gallery-prev-btn,
.gallery-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    font-size: 24px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 300;
    font-family: 'Raleway', sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.gallery-prev-btn {
    left: 25px;
}

.gallery-next-btn {
    right: 25px;
}

.gallery-prev-btn:hover,
.gallery-next-btn:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.05);
}

.about-content p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    text-align: left;
    font-weight: 400;
    max-width: 800px;
}

/* Music Content */
.music-content {
    max-width: 1000px;
}

.music-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.music-content .divider {
    width: 60px;
    margin: 1.5rem 0 2rem 0;
    border: none;
    border-top: 1px solid var(--accent-color);
}

.music-player {
    margin-top: 2rem;
    width: 100%;
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.player-container {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.album-art {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-controls {
    flex: 1;
    min-width: 0;
}

.track-info {
    margin-bottom: 2.5rem;
}

.track-info .track-artist {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.track-info .track-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.4;
}

.playback-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.control-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--primary-color);
    padding: 0.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
}

.control-btn:hover {
    color: var(--accent-color);
    background: rgba(139, 115, 85, 0.05);
}

.play-pause-btn {
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 300;
}

.play-pause-btn:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.05);
}

.progress-container {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--border-color);
    cursor: pointer;
    position: relative;
    border-radius: 2px;
}

.progress-fill {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 2px;
}

.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.5px;
}

.track-list {
    list-style: none;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.track-list li {
    display: flex;
    align-items: center;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
    gap: 1rem;
}

.track-list li:hover {
    background: rgba(0, 0, 0, 0.02);
}

.track-list li.active {
    color: var(--accent-color);
    background: rgba(139, 115, 85, 0.08);
}

.track-list li.active .track-name {
    font-weight: 600;
}

.track-number {
    width: 25px;
    font-size: 13px;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    text-align: right;
}

.track-name {
    flex: 1;
    font-size: 14px;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.5;
}

.track-duration {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Raleway', sans-serif;
    min-width: 45px;
    text-align: right;
}

.track-list li.active .track-number,
.track-list li.active .track-duration {
    color: var(--accent-color);
    font-weight: 500;
}

/* Purchase Information */
.purchase-info {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.purchase-info h6 {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    color: var(--text-light);
    letter-spacing: 1.5px;
    font-family: 'Raleway', sans-serif;
}

.purchase-info .store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.purchase-info .store-buttons a {
    display: inline-block;
    opacity: 0.8;
    transition: var(--transition);
    padding: 0;
}

.purchase-info .store-buttons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.purchase-info .store-buttons img {
    height: 40px;
    width: auto;
    display: block;
}

.purchase-info .store-buttons a.spotify-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #000;
    border-radius: 6px;
}

.purchase-info .store-buttons a.spotify-link img {
    height: 24px;
    width: auto;
    display: block;
}

.purchase-info .store-buttons a.spotify-link span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.purchase-info .store-buttons a.amazon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #000;
    border-radius: 6px;
}

.purchase-info .store-buttons a.amazon-link img {
    height: 24px;
    width: auto;
    display: block;
}

.purchase-info .store-buttons a.amazon-link span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.music-player iframe {
    border: none;
    width: 100%;
    max-width: 771px;
    height: 353px;
    display: block;
}

/* Ensure iframes are responsive */
.music-player,
.video-gallery {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.music-player iframe,
.video-gallery iframe {
    max-width: 100%;
    width: 100%;
}

/* Video Content */
.video-content {
    width: 100%;
    max-width: 1100px;
}

.video-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.video-content .divider {
    width: 60px;
    margin: 1.5rem 0 2rem 0;
    border: none;
    border-top: 1px solid var(--accent-color);
}

.video-player {
    margin-top: 2rem;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--bg-light);
}

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

.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
    z-index: 10;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg circle {
    transition: var(--transition);
}

.play-button:hover svg circle {
    fill: rgba(255, 255, 255, 1);
}

.video-gallery {
    width: 100%;
    text-align: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.video-gallery iframe {
    border: none;
    width: 100%;
    max-width: 829px;
    height: 648px;
    display: block;
}

/* Contact Content */
.contact-content {
    max-width: 700px;
}

.contact-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.contact-content .divider {
    width: 60px;
    margin: 1.5rem 0 2rem 0;
    border: none;
    border-top: 1px solid var(--accent-color);
}

.contact-content .inquiries-heading {
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 2rem 0;
    text-align: left;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Raleway', sans-serif;
}

/* Press Content */
.press-content {
    max-width: 1000px;
}

.press-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 6px;
    color: var(--primary-color);
}

.press-content .divider {
    width: 60px;
    margin: 1.5rem 0 3rem 0;
    border: none;
    border-top: 1px solid var(--accent-color);
}

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

.press-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.press-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.press-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.press-source {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin: 0 0 0.5rem 0;
}

.press-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.press-description {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0 0 1rem 0;
}

.press-link {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--accent-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.press-link:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.press-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.press-links .press-link {
    margin-top: 0;
}

.contact-form {
    background-color: var(--white);
    padding: 0;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
    font-family: inherit;
    background-color: transparent;
    transition: var(--transition);
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid var(--primary-color);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
    float: right;
    margin-top: 1rem;
    font-family: 'Raleway', sans-serif;
    padding-right: 0;
    min-width: 120px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.submit-btn:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
    letter-spacing: 4px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 0.75rem;
    text-align: center;
    display: none;
    font-size: 15px;
    clear: both;
    font-style: italic;
}

.form-message.success {
    display: block;
    color: var(--accent-color);
}

.form-message.error {
    display: block;
    color: #8b5a5a;
}

/* Footer */
.site-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-light);
    margin-top: auto;
}

.site-footer p {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 2px;
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        padding: 2.5rem 3rem;
    }
    
    .site-header {
        padding: 1rem 2.5rem;
    }
    
    .site-header h1 {
        font-size: 32px;
        letter-spacing: 5px;
    }
    
    .side-nav {
        width: 160px;
        padding: 1.5rem 1.25rem;
    }
    
    .music-player iframe {
        height: 300px;
        max-width: 100%;
        width: 100%;
    }
    
    .video-gallery iframe {
        height: 500px;
        max-width: 100%;
        width: 100%;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    .main-wrapper {
        flex-direction: column;
    }
    
    .side-nav {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 1.5rem;
    }
    
    .side-nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
    }
    
    .side-nav li {
        margin-bottom: 0;
    }
    
    .side-nav a {
        font-size: 12px;
        padding: 0.5rem 0;
    }
    
    .side-nav a::after {
        display: none;
    }
    
    .side-nav a:hover,
    .side-nav a.active {
        padding-left: 0;
    }
    
    .side-nav .store-buttons {
        margin-top: 1.5rem;
        align-items: center;
    }
    
    .side-nav h6 {
        font-size: 9px;
        margin: 1.25rem 0 0.75rem 0;
        text-align: center;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .site-header {
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .site-header h1 {
        font-size: 26px;
        letter-spacing: 3px;
    }
    
    .music-content h2 {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }
    
    .music-content .divider {
        margin: 1.5rem 0 2rem 0;
    }
    
    .about-content h2 {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }
    
    .about-content .divider {
        margin: 1.5rem 0 2rem 0;
    }
    
    .contact-content h2 {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }
    
    .contact-content .divider {
        margin: 1.5rem 0 2rem 0;
    }
    
    .music-player {
        padding: 2rem 1.5rem;
        margin-top: 1.5rem;
    }
    
    .music-player iframe {
        height: 250px;
        max-width: 100%;
        width: 100%;
    }
    
    .video-gallery {
        border: none;
    }
    
    .video-gallery iframe {
        height: 300px;
        max-width: 100%;
        width: 100%;
    }
    
    .video-wrapper {
        border: none;
    }
    
    .gallery-images img {
        height: 300px;
    }
    
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .gallery-prev-btn {
        left: 10px;
    }
    
    .gallery-next-btn {
        right: 10px;
    }
    
    .home-content {
        min-height: 400px;
        height: calc(100vh - 200px);
    }
    
    .home-image {
        filter: grayscale(0%) brightness(1);
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 1.25rem;
    }
    
    .image-gallery {
        margin-bottom: 2.5rem;
    }
    
    .contact-content {
        max-width: 100%;
    }
    
    .contact-content .inquiries-heading {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .press-content h2 {
        font-size: 32px;
        letter-spacing: 3px;
        margin-bottom: 1.5rem;
    }
    
    .press-content .divider {
        margin: 1.5rem 0 2rem 0;
    }
    
    .section-title {
        font-size: 20px;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
    }
    
    .press-item {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .press-title {
        font-size: 20px;
    }
    
    .press-description {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .contact-form input,
    .contact-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .submit-btn {
        float: none;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .site-footer {
        padding: 2rem 1rem;
    }
    
    .site-footer p {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0.75rem 0.75rem;
    }
    
    .site-header h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    
    .side-nav {
        padding: 0.75rem 1rem;
    }
    
    .side-nav ul {
        gap: 0.75rem 1rem;
    }
    
    .side-nav a {
        font-size: 11px;
        padding: 0.4rem 0;
    }
    
    .main-content {
        padding: 2rem 1rem;
    }
    
    .music-content h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .about-content h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .contact-content h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .music-player {
        padding: 1.5rem 1rem;
    }
    
    .music-player iframe {
        height: 200px;
        width: 100%;
    }
    
    .video-gallery iframe {
        height: 250px;
        width: 100%;
    }
    
    .video-content h2 {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .gallery-images img {
        height: 250px;
    }
    
    .gallery-prev-btn,
    .gallery-next-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }
    
    .gallery-prev-btn {
        left: 5px;
    }
    
    .gallery-next-btn {
        right: 5px;
    }
    
    .home-content {
        min-height: 300px;
        height: calc(100vh - 180px);
    }
    
    .about-content p {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .contact-content .inquiries-heading {
        font-size: 16px;
    }
    
    .image-gallery {
        margin-bottom: 1.5rem;
    }
    
    .press-content h2 {
        font-size: 28px;
        letter-spacing: 2px;
    }
    
    .section-title {
        font-size: 18px;
        letter-spacing: 1.5px;
        margin-bottom: 1.25rem;
    }
    
    .press-item {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }
    
    .press-title {
        font-size: 18px;
    }
    
    .press-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .press-link {
        font-size: 13px;
    }
    
    .about-content p {
        margin-bottom: 1rem;
    }
    
    .contact-form .form-group {
        margin-bottom: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Elegant fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-content > * {
    animation: fadeIn 0.6s ease-out;
}
