:root {
    --bg-color: #f7f3ea;
    --text-dark: #3b2b1a;
    --accent-gold: #c28c3a;
    --white: #ffffff;
    
    --font-serif: 'Playfair Display', serif;
    --font-condensed: 'Oswald', sans-serif;
    --font-sans: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    /* Subtle texture gradient */
    background-image: radial-gradient(circle at center, #fdfcf9 0%, #ece5d6 100%);
    color: var(--text-dark);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23c28c3a" fill-opacity="0.03" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Header & Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hop-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.logo-subtitle .line {
    height: 2px;
    width: 30px;
    background-color: var(--accent-gold);
}

/* Main Content */
.heading-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pre-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--accent-gold);
}

.pre-heading h2 {
    font-family: var(--font-condensed);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pre-heading .line {
    height: 2px;
    width: 40px;
    background-color: var(--accent-gold);
}

.main-heading-1 {
    font-family: var(--font-condensed);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.highlight-wrapper {
    background-color: var(--accent-gold);
    padding: 0.5rem 2rem;
    border-radius: 8px;
    transform: rotate(-1deg);
    margin-top: -0.5rem;
    box-shadow: 2px 4px 10px rgba(0,0,0,0.1);
}

.main-heading-2 {
    font-family: var(--font-condensed);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--bg-color);
    line-height: 1.1;
    text-transform: uppercase;
    transform: rotate(1deg);
}

/* Message Section */
.message-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.text-wrapper p {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1rem;
}

/* Footer Message */
.footer-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Animations */
.highlight-wrapper {
    transition: transform 0.3s ease;
}

.highlight-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hop-icon {
    animation: bounce 3s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 600px) {
    .logo-text {
        font-size: 3.5rem;
    }
    
    .main-heading-1 {
        font-size: 3.5rem;
    }
    
    .main-heading-2 {
        font-size: 3rem;
    }
    
    .message-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .text-wrapper p {
        border-left: none;
        border-top: 2px solid var(--accent-gold);
        padding-left: 0;
        padding-top: 1rem;
    }
}
