/* ===================================
   DINO RUN 2 - PLACEHOLDER SITE
   Matches DR2_site_design_v2.png mockup
   =================================== */

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    background-color: #563017; /* Earth brown background */
}

/* ===================================
   BROWN HEADER BAR
   =================================== */

.brown-header {
    background-color: #563017;
    border-bottom: 3px solid #351a09;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo-dr2 {
    display: block;
    transition: transform 0.3s ease;
}

.logo-dr2:hover {
    transform: scale(1.05);
}

.logo-dr2 img {
    height: 66px; /* 20% larger (was 55px) */
    width: auto;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.contact-btn {
    display: block;
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
}

.contact-btn img {
    height: 50px; /* 25% larger (was 40px) */
    width: auto;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* ===================================
   HERO IMAGE SECTION
   =================================== */

.hero-section {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid #351a09;
}

/* BACKGROUND IMAGE */
.hero-background {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-image: url('../images/DinoRun2_site_Hero_2_3840x2160.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    z-index: 1;
}

/* Make sure hero fills available space */
@media (min-aspect-ratio: 16/9) {
    .hero-background {
        background-size: cover;
    }
}

/* BUTTONS OVER HERO */
.hero-buttons {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 60px; /* 15% further apart (was 40px, now 50% increase for better spacing) */
    padding-bottom: 30px; /* Lower on the hero image */
}

.hero-btn {
    display: block;
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
}

.hero-btn img {
    height: auto;
    width: 416px; /* 30% larger (was 320px) */
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* ===================================
   BROWN FOOTER BAR
   =================================== */

.brown-footer {
    background-color: #563017;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}

.pixeljam-logo {
    display: block;
    transition: transform 0.3s ease;
}

.pixeljam-logo:hover {
    transform: scale(1.05);
}

.pixeljam-logo img {
    height: 40px;
    width: auto;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* TABLET */
@media (max-width: 1024px) {
    .brown-header {
        padding: 12px 30px;
    }
    
    .logo-dr2 img {
        height: 58px; /* Proportional to new size */
    }
    
    .contact-btn img {
        height: 45px; /* Proportional to new size */
    }
    
    .hero-buttons {
        gap: 35px;
        padding-bottom: 25px;
    }
    
    .hero-btn img {
        width: 364px; /* Proportional to new size */
    }
    
    .brown-footer {
        padding: 20px;
    }
    
    .pixeljam-logo img {
        height: 35px;
    }
}

/* MOBILE LANDSCAPE */
@media (max-width: 768px) and (orientation: landscape) {
    .brown-header {
        padding: 10px 20px;
    }
    
    .logo-dr2 img {
        height: 48px;
    }
    
    .contact-btn img {
        height: 40px;
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-buttons {
        gap: 25px;
        padding-bottom: 20px;
    }
    
    .hero-btn img {
        width: 286px; /* Proportional */
    }
    
    .brown-footer {
        padding: 15px;
    }
    
    .pixeljam-logo img {
        height: 30px;
    }
}

/* MOBILE PORTRAIT */
@media (max-width: 768px) and (orientation: portrait) {
    .brown-header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .logo-dr2 img {
        height: 70px; /* Much larger on mobile to fill width (was 50px) */
    }
    
    .contact-btn img {
        height: 50px; /* Also larger for balance (was 42px) */
    }
    
    .hero-section {
        min-height: 450px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-bottom: 25px;
    }
    
    .hero-btn img {
        width: 364px; /* Proportional */
    }
    
    .brown-footer {
        padding: 20px;
    }
    
    .pixeljam-logo img {
        height: 32px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .brown-header {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .logo-dr2 img {
        height: 60px; /* Larger to fill width (was 43px) */
    }
    
    .contact-btn img {
        height: 45px; /* Larger for balance (was 37px) */
    }
    
    .hero-section {
        min-height: 400px;
    }
    
    .hero-buttons {
        gap: 15px;
        padding-bottom: 20px;
    }
    
    .hero-btn img {
        width: 312px; /* Proportional */
    }
    
    .brown-footer {
        padding: 18px;
    }
    
    .pixeljam-logo img {
        height: 28px;
    }
}

/* VERY SMALL MOBILE */
@media (max-width: 375px) {
    .brown-header {
        padding: 10px 12px;
        gap: 8px;
    }
    
    .logo-dr2 img {
        height: 52px; /* Larger to fill width (was 36px) */
    }
    
    .contact-btn img {
        height: 40px; /* Larger for balance (was 32px) */
    }
    
    .hero-section {
        min-height: 350px;
    }
    
    .hero-buttons {
        gap: 12px;
        padding-bottom: 18px;
    }
    
    .hero-btn img {
        width: 260px; /* Proportional */
    }
    
    .brown-footer {
        padding: 15px;
    }
    
    .pixeljam-logo img {
        height: 24px;
    }
}

/* EXTRA WIDE SCREENS */
@media (min-width: 1920px) {
    /* Buttons are centered, so they look good at any width */
}
