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

body {
    background-color: white;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding-top: 10px;
    padding-left: 14px;
    padding-right: 0;
    padding-bottom: 0;
}

.logo {
    width: 262px;
    height: auto;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(10px, 2vh, 20px);
}

.hero-image {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 150vh;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.shimmer-text {
    margin-top: clamp(15px, 3vh, 30px);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: normal;
    text-align: center;
    background: linear-gradient(
        90deg,
        #1a4d2e 0%,
        #3d6b4f 25%,
        #d4af37 50%,
        #3d6b4f 75%,
        #1a4d2e 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

.subtitle {
    margin-top: clamp(10px, 2vh, 15px);
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #333;
    text-align: center;
}

/* Tablet */
@media (max-width: 768px) {
    .logo {
        width: 175px;
    }
    
    .shimmer-text {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

/* Phone */
@media (max-width: 480px) {
    .logo {
        width: 90%;
        max-width: 280px;
    }
    
    .shimmer-text {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
}

/* Small height screens (laptops 700-800px) */
@media (max-height: 800px) {
    header {
        padding-top: 8px;
        padding-left: 12px;
        padding-right: 0;
        padding-bottom: 0;
    }
    
    .logo {
        width: clamp(125px, 17.5vw, 200px);
    }
    
    main {
        padding: 10px;
    }
    
    .hero-image {
        max-height: 50vh;
    }
    
    .shimmer-text {
        margin-top: 15px;
    }
    
    .subtitle {
        margin-top: 10px;
    }
}

/* Very small height screens */
@media (max-height: 700px) {
    .logo {
        width: clamp(100px, 15vw, 175px);
    }
    
    .hero-image {
        max-height: 45vh;
    }
    
    .shimmer-text {
        margin-top: 10px;
    }
    
    .subtitle {
        margin-top: 8px;
    }
}
