:root {
    --bg-color: #050505;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --accent-gold: #927D34;
    --accent-gold-hover: #b0994a;
    --overlay-color: rgba(0, 0, 0, 0.6);
    --font-heading: 'Myriad Pro', 'Inter', sans-serif;
    --font-body: 'Myriad Pro', 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background & Texture */
.hero-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('./hero-beach.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.5) 0%,
            var(--bg-color) 90%);
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* Navigation */
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
}

.nav-logo {
    margin-right: auto;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #927D34 0%, #B5A566 50%, #927D34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.description-top {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 300;
}

.description-bottom {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-top: 4rem;
    letter-spacing: 1px;
    font-weight: 300;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
}

.time-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    position: relative;
    width: 100%;
    display: flex;
    border-bottom: 1px solid var(--text-secondary);
    transition: border-color 0.3s ease;
}

.input-group:focus-within {
    border-bottom: 1px solid var(--accent-gold);
}

input[type="email"],
input[type="text"],
textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder,
input[type="text"]::placeholder,
textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

button[type="submit"] {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

button[type="submit"]:hover {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(146, 125, 52, 0.3);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Contact Page specific */
.contact-wrapper {
    background: url('./hero-beach.png') no-repeat center center/cover;
}

.contact-section {
    margin-top: 2rem;
    width: 100%;
}

.contact-section p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.direct-email {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.direct-email:hover {
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.social-icon {
    color: var(--text-secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* Footer */
footer {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .countdown-container {
        gap: 1.5rem;
    }

    .time-value {
        font-size: 2rem;
    }
}