/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@property --bg-start {
    syntax: '<color>';
    inherits: false;
    initial-value: #2d4a6f;
}

@property --bg-mid {
    syntax: '<color>';
    inherits: false;
    initial-value: #1E2A3A;
}

@property --bg-end {
    syntax: '<color>';
    inherits: false;
    initial-value: #1a2838;
}

html {
    background-color: #0a0e14;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 40%, var(--bg-end) 100%);
    color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    animation: bgFadeToBlack 10s ease-in-out forwards;
}

@keyframes bgFadeToBlack {
    to {
        --bg-start: #0a0e14;
        --bg-mid: #0a0e14;
        --bg-end: #0a0e14;
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    background-color: rgba(30, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 10px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    position: relative;
    display: inline-block;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}




.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #E0C67D;
}

.nav-link.active::after {
    width: 100%;
}

/* Merch Link Specific Styles */
.nav-link.merch-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 25%, #FFF 50%, #E0C67D 75%, #937B47 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-position 0.5s ease;
}

.nav-link.merch-link::after {
    display: none;
    content: none;
    width: 0;
    height: 0;
    background: none;
}

.nav-link.merch-link:hover {
    color: transparent;
    background-position: right center;
    text-shadow: 0 0 10px rgba(224, 198, 125, 0.3);
}

/* Hero Section */
.hero {
    min-height: 500px;
    height: 70vh;
    max-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    z-index: 10;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 10px;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    margin-bottom: 25px;
}

.watch-latest-btn {
    display: inline-block;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    color: #1E2A3A;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.watch-latest-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-logo {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 600px;
}

.hero-logo img {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.music-player {
    margin-top: 15px;
    text-align: left;
}

.player-controls {
    display: inline-flex;
    justify-content: flex-start;
    gap: 5px;
}

.player-btn {
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border: none;
    font-size: 0.75rem;
    padding: 2px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.player-btn:hover {
    opacity: 0.7;
}

.track-name-container {
    margin-top: 8px;
    width: 160px;
    height: 20px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    display: none;
}

.track-name-container.playing {
    display: block;
}

.track-name {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    display: inline-block;
    animation: scrollTrackName 12s linear infinite;
}

@keyframes scrollTrackName {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.hero-image-container {
    display: none;
}

.hero-image {
    display: none;
}

/* Video Cards Section */
.video-cards {
    background-color: transparent;
    padding: 40px 20px 50px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 15;
}

/* Loading Container */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 200px;
}

.loading-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loading-bar-wrapper {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #937B47 0%, #E0C67D 50%, #9D804C 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(224, 198, 125, 0.5);
}

.loading-percentage {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #E0C67D;
    margin-top: 10px;
    font-weight: 600;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.video-card {
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    position: relative;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}

.video-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.video-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.video-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.video-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}


.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.card-thumbnail {
    position: relative;
    height: 160px;
    overflow: hidden;
    border-radius: 16px;
    margin: 0;
}

.thumbnail-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 42, 58, 0.7) 0%, rgba(106, 149, 204, 0.3) 100%);
    pointer-events: none;
    z-index: 2;
}

.card-title-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 5;
}

.card-title-overlay .card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.overlay-text {
    font-size: 10px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 6px;
    border-radius: 3px;
}

.overlay-badge {
    font-size: 9px;
    color: white;
    background: #c9a227;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: 600;
}

.play-button {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 5;
}

.play-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.play-button svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.85rem;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.watch-btn {
    background-color: #C9A227;
    color: #1E2A3A;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch-btn:hover {
    background-color: #D4B02E;
    transform: scale(1.05);
}

/* Recent Videos Section */
.recent-videos {
    background-color: transparent;
    padding: 30px 20px 40px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.recent-videos-grid {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.recent-video-card {
    width: 180px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.recent-video-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.recent-video-card:hover {
    transform: translateY(-3px);
}

.recent-video-card:nth-child(1).animate-in {
    transition-delay: 0.1s;
}

.recent-video-card:nth-child(2).animate-in {
    transition-delay: 0.2s;
}

.recent-video-card:nth-child(3).animate-in {
    transition-delay: 0.3s;
}

.recent-video-card:nth-child(4).animate-in {
    transition-delay: 0.4s;
}

.recent-thumbnail {
    position: relative;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.recent-thumbnail-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 42, 58, 0.85) 0%, rgba(106, 149, 204, 0.5) 100%);
    pointer-events: none;
    z-index: 2;
}

.recent-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
}

.play-icon-small {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.3s ease;
}

.play-icon-small svg {
    width: 12px;
    height: 12px;
    margin-left: 2px;
}

.recent-video-card:hover .play-icon-small {
    background: rgba(0, 0, 0, 0.8);
}

.recent-video-title {
    font-size: 0.8rem;
    color: #cccccc;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: transparent;
    padding: 25px 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 0.85rem;
    color: #888888;
    align-self: center;
}

.newsletter {
    text-align: right;
}

.newsletter-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C9A227;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-input {
    background-color: #ffffff;
    border: none;
    padding: 12px 16px;
    border-radius: 25px 0 0 25px;
    font-size: 0.9rem;
    width: 220px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #888888;
}

.newsletter-btn {
    background: #C9A227;
    border: none;
    padding: 12px 18px;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.newsletter-btn:hover {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards-container {
        gap: 15px;
    }

    .video-card {
        width: 280px;
    }

    .hero-content {
        left: 5%;
        top: 30%;
    }

    .hero-logo {
        max-width: 400px;
        right: 5%;
    }

    .hero-background img {
        height: 65vh;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }

    .nav-link {
        padding: 6px 10px;
        font-size: 11px;
    }

    .hero {
        min-height: auto;
        height: auto;
        padding-top: 60px;
        padding-bottom: 20px;
        flex-direction: column;
    }

    .hero::before {
        display: none;
    }

    .hero-background {
        position: relative;
        top: 0;
        width: 100%;
        height: auto;
    }

    .hero-background img {
        width: 100%;
        height: auto;
        min-height: 250px;
        max-height: 950px;
        object-fit: cover;
        object-position: center 60%;
    }

    .hero-content {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        padding: 20px;
        text-align: center;
        background: rgba(0, 0, 0, 0.5);
        margin: 0;
        width: 100%;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-logo {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        max-width: 200px;
        margin: 15px auto;
    }

    .music-player {
        text-align: center;
    }

    .player-controls {
        justify-content: center;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .video-card {
        width: 100%;
        max-width: 320px;
    }

    .card-thumbnail {
        height: 180px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .recent-videos-grid {
        justify-content: center;
        gap: 15px;
    }

    .recent-video-card {
        width: 150px;
    }

    .recent-thumbnail {
        height: 90px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .newsletter {
        text-align: center;
    }

    .newsletter-form {
        justify-content: center;
    }

    .newsletter-input {
        width: 180px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 3px;
    }

    .nav-link {
        padding: 5px 8px;
        font-size: 10px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .watch-latest-btn {
        font-size: 0.75rem;
        padding: 10px 18px;
    }

    .hero-logo {
        max-width: 200px;
    }

    .video-card {
        max-width: 280px;
    }

    .card-thumbnail {
        height: 150px;
    }

    .card-title-overlay .card-title {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .recent-video-card {
        width: 130px;
    }

    .recent-thumbnail {
        height: 75px;
    }

    .play-icon-small {
        width: 24px;
        height: 24px;
    }

    .newsletter-input {
        width: 150px;
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .newsletter-btn {
        padding: 10px 14px;
    }
}

/* Contact Form Modal */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 10000;
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-modal.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    overflow-y: auto;
    opacity: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes modalSlideDown {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
}

.contact-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: auto;
    animation: modalSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

@media (min-width: 1024px) {
    .contact-modal-content {
        max-width: none;
        width: min(1400px, 90vw);
        padding: 45px 60px 50px;
    }
}


.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-modal-close:hover {
    background-color: #f0f0f0;
    color: #D4AF37;
    transform: rotate(90deg);
}

.contact-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1E2A3A;
    margin-bottom: 10px;
    text-align: center;
}

.contact-modal-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .contact-form {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px 20px;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #1E2A3A;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #1E2A3A;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(220, 53, 69, 0.6);
    font-size: 1.2rem;
    font-weight: bold;
    filter: blur(0.5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

@media (min-width: 1024px) {
    .form-group textarea {
        min-height: 80px;
    }
}

@media (min-width: 768px) {
    .form-group.message {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .form-group.first-name {
        grid-column: 1 / 4;
    }

    .form-group.last-name {
        grid-column: 4 / 7;
    }

    .form-group.email {
        grid-column: 1 / 5;
    }

    .form-group.house-number {
        grid-column: 5 / 7;
    }

    .form-group.street-name {
        grid-column: 1 / 7;
    }

    .form-group.city {
        grid-column: 1 / 3;
    }

    .form-group.state {
        grid-column: 3 / 5;
    }

    .form-group.zip {
        grid-column: 5 / 7;
    }

    .form-group.message {
        grid-column: 1 / 7;
    }

    .contact-submit-btn {
        grid-column: 1 / 7;
    }
}

.contact-submit-btn {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: #1E2A3A;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

@media (min-width: 1024px) {
    .contact-submit-btn {
        grid-column: 1 / -1;
    }
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 10px;
    display: none;
}

@media (min-width: 1024px) {
    .form-status {
        grid-column: 1 / -1;
    }
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .contact-modal-title {
        font-size: 2rem;
    }

    .contact-submit-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-modal-content {
        padding: 25px 15px;
    }

    .contact-modal-title {
        font-size: 1.75rem;
    }

    .contact-modal-subtitle {
        font-size: 0.9rem;
    }
}

/* About Modal - Native HTML5 Dialog */
.about-modal {
    border: none;
    padding: 0;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    max-height: 90vh;
    background: transparent;
    overflow: visible;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modal[open] {
    opacity: 1;
}

.about-modal::backdrop {
    background-color: rgba(30, 42, 58, 0.95);
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modal[open]::backdrop {
    opacity: 1;
}

@media (min-width: 768px) {
    .about-modal {
        width: auto;
        max-width: 800px;
    }

    .about-modal::backdrop {
        background-color: rgba(30, 42, 58, 0.3);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.about-modal-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center center;
}

@media (min-width: 768px) {
    .about-modal-content {
        padding: 50px 60px;
    }
}

.about-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    padding: 0;
}

.about-modal-close:hover {
    background-color: #f0f0f0;
    color: #D4AF37;
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .about-modal-close {
        display: flex;
        top: 20px;
        right: 20px;
    }
}

.about-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E2A3A;
    margin: 0 0 30px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .about-modal-title {
        font-size: 2rem;
    }
}

.about-modal-text {
    color: #1E2A3A;
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.about-modal-text::-webkit-scrollbar {
    width: 8px;
}

.about-modal-text::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.about-modal-text::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 10px;
}

.about-modal-text::-webkit-scrollbar-thumb:hover {
    background: #C5A028;
}

.about-modal-text p {
    margin: 0 0 20px 0;
}

.about-modal-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .about-modal-content {
        padding: 30px 20px;
    }

    .about-modal-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .about-modal-text {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
    }
}