/* RMv Studio Styles */
body {
    font-family: 'VT323', monospace;
    background-color: #151515;
    color: #fdf0e7;
    line-height: 1.4;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: #fdf0e7;
    color: #151515;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    padding: 8px 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}

.banner-content {
    display: inline-block;
    animation: scroll 60s linear infinite;
    padding-left: 100%;
}

@keyframes scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Main Header */
.main-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 40px;
    font-size: 16px;
    background-color: #151515;
}

.header-left {
    justify-self: start;
}

.header-center {
    justify-self: center;
    text-transform: lowercase;
    letter-spacing: 0.1em;
}

.tagline-letter {
    transition: color 0.3s ease;
}

.tagline-letter.red-accent {
    color: #e50000;
}

.header-right {
    justify-self: end;
}

.header-right nav {
    display: flex;
    gap: 30px;
}

.header-right nav a {
    color: #fdf0e7;
    text-transform: lowercase;
    transition: opacity 0.3s ease;
    text-decoration: underline;
}

.header-right nav a:hover {
    opacity: 0.7;
}

.location {
    font-size: 14px;
    opacity: 0.8;
    text-decoration: underline;
}

.location-link {
    color: inherit;
    transition: opacity 0.3s ease;
}

.location-link:hover {
    opacity: 1;
}

/* Hero Section - Logo */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 80px 40px;
}

.logo {
    font-size: clamp(8rem, 20vw, 24rem);
    line-height: 0.8;
    text-align: center;
    user-select: none;
}

.logo-r {
    font-family: 'Jacquard12', display;
    color: #fdf0e7;
    transition: color 0.3s ease;
}

.logo-m {
    font-family: 'Aldrich', sans-serif;
    color: #fdf0e7;
    transition: color 0.3s ease;
}

.logo-v {
    font-family: 'Lobster', cursive;
    color: #fdf0e7;
    transition: color 0.3s ease;
}

.logo-letter.red-accent {
    color: #e50000;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-left {
    padding-right: 40px;
}

.studio-name {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: normal;
    text-transform: lowercase;
    color: #e50000;
}

.description, .philosophy {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.studio-links {
    margin-top: 40px;
    text-decoration: underline;
}

.link {
    color: #fdf0e7;
    text-decoration: underline;
    font-size: 16px;
}

.link:hover {
    opacity: 0.7;
}

/* Right Column */
.info-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info h3,
.hours h3,
.actions h3 {
    font-size: 16px;
    margin-bottom: 15px;
    text-transform: lowercase;
    font-weight: normal;
}

.contact-info p,
.hours p,
.actions p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.contact-info-link {
    color: inherit;
    text-decoration: underline;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-info-link:hover {
    opacity: 1;
}

.action-link {
    color: #fdf0e7;
    text-decoration: none;
    border-bottom: 1px solid rgba(253, 240, 231, 0.3);
}

.action-link:hover {
    border-bottom-color: #fdf0e7;
}

/* Projects Section */
.projects-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: 32px;
    font-weight: normal;
    text-transform: lowercase;
    margin: 0;
    color: #e50000;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: transparent;
    border: 1px solid rgba(253, 240, 231, 0.2);
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(253, 240, 231, 0.05);
    transition: left 0.3s ease;
    z-index: 1;
}

.project-card:hover::before {
    left: 0;
}

.project-card:hover {
    border-color: rgba(253, 240, 231, 0.4);
    transform: translateY(-2px);
}

.project-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.project-card p {
    font-size: 14px;
    opacity: 0.7;
    margin: 0;
    text-transform: lowercase;
    position: relative;
    z-index: 2;
}

.project-card:hover h3,
.project-card:hover p {
    color: #fdf0e7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .info-left {
        padding-right: 0;
    }

    .main-header {
        padding: 20px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }

    .header-left,
    .header-center,
    .header-right {
        justify-self: center;
    }

    .header-right nav {
        gap: 20px;
    }

    .projects-section {
        padding: 60px 20px;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1px;
    }

    .project-card {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
        padding: 60px 20px;
    }

    .info-grid {
        padding: 20px;
    }

    .banner-content {
        font-size: 12px;
    }

    .header-right nav {
        flex-direction: column;
        gap: 10px;
    }

    .projects-section {
        padding: 40px 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
    }

    .project-card {
        padding: 40px 20px;
    }

    .project-card h3 {
        font-size: 16px;
    }

    .project-card p {
        font-size: 12px;
    }

    .projects-header h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 6rem;
    }

    .main-header {
        padding: 15px;
    }

    .hero {
        padding: 40px 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        padding: 30px 15px;
    }

    .projects-header h2 {
        font-size: 20px;
    }
}

/* Footer */
.main-footer {
    background-color: #151515;
    border-top: 1px solid rgba(253, 240, 231, 0.1);
    padding: 80px 40px 40px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo-text {
    font-family: 'Jacquard12', display;
    font-size: 32px;
    color: #e50000;
    display: block;
    line-height: 1.2;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-credits p {
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
}

.gpg-info {
    font-size: 12px;
    opacity: 0.6;
    font-family: 'VT323', monospace;
    word-break: break-all;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-end;
    text-align: right;
}

.footer-contact p {
    font-size: 16px;
    margin: 0;
}

.contact-link {
    color: #fdf0e7;
    text-decoration: none;
    border-bottom: 1px solid rgba(253, 240, 231, 0.3);
    transition: border-bottom-color 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: #fdf0e7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: #fdf0e7;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .main-footer {
        padding: 60px 20px 30px;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-right {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 15px 20px;
        margin-top: 40px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-left {
        gap: 20px;
    }

    .footer-right {
        gap: 20px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-logo-text {
        font-size: 20px;
    }

    .footer-credits p,
    .footer-contact p {
        font-size: 12px;
    }

    .gpg-info {
        font-size: 10px;
    }

    .footer-link {
        font-size: 12px;
    }
}
