* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

:root {
    --primary-gold: #b8956a;
    --secondary-gold: #e8d5c4;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-color: #d4a574;
    --marble-light: #e8e8e8;
    --marble-dark: #2a2a2a;
}

body {
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #2a2a2a 75%, #1a1a1a 100%);
    position: relative;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(184, 149, 106, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(232, 213, 196, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* Background animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(184, 149, 106, 0.4);
    border-radius: 50%;
    animation: float linear infinite;
    box-shadow: 0 0 8px rgba(184, 149, 106, 0.6);
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    left: 10%;
    top: 20%;
    --duration: 20s;
    animation: float 20s linear infinite;
}

.particle:nth-child(2) {
    width: 4px;
    height: 4px;
    left: 80%;
    top: 10%;
    --duration: 25s;
    animation: float 25s linear infinite;
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 50%;
    top: 60%;
    --duration: 22s;
    animation: float 22s linear infinite;
}

.particle:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 20%;
    top: 70%;
    --duration: 18s;
    animation: float 18s linear infinite;
}

.particle:nth-child(5) {
    width: 5px;
    height: 5px;
    left: 90%;
    top: 50%;
    --duration: 23s;
    animation: float 23s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 20px;
}

.content {
    text-align: center;
    max-width: 650px;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-wrapper {
    margin-bottom: 40px;
    animation: zoomIn 0.8s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(184, 149, 106, 0.4));
    transition: transform 0.3s ease;
    animation: floatAndRotate 6s ease-in-out infinite;
}

.logo:hover {
    animation-play-state: paused;
    transform: scale(1.08) rotateZ(2deg);
}

@keyframes floatAndRotate {
    0%, 100% {
        transform: translateY(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-15px) rotateZ(1deg);
    }
    50% {
        transform: translateY(-25px) rotateZ(0deg);
    }
    75% {
        transform: translateY(-15px) rotateZ(-1deg);
    }
}

.title {
    font-size: 56px;
    letter-spacing: 3px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(184, 149, 106, 0.2);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 2px 10px rgba(184, 149, 106, 0.2);
    }
    50% {
        text-shadow: 0 2px 20px rgba(184, 149, 106, 0.4), 0 0 30px rgba(232, 213, 196, 0.2);
    }
}

.subtitle {
    font-size: 18px;
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 300;
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.description {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    margin: 35px auto;
    animation: expandWidth 0.8s ease-out 0.6s both;
    box-shadow: 0 0 10px rgba(184, 149, 106, 0.5);
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: var(--secondary-gold);
    font-size: 24px;
    border: 2px solid var(--primary-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gold);
    z-index: -1;
    transition: left 0.3s ease;
}

.social-icon:hover {
    color: var(--dark-bg);
    border-color: var(--secondary-gold);
    box-shadow: 0 0 20px rgba(184, 149, 106, 0.5);
    transform: translateY(-5px);
}

.social-icon:hover::before {
    left: 0;
}

.contact {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.contact a {
    color: var(--secondary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: width 0.3s ease;
}

.contact a:hover {
    color: var(--accent-color);
}

.contact a:hover::after {
    width: 100%;
}

/* Email signup form */
.email-signup {
    animation: fadeIn 1s ease-out 1s both;
    margin-top: 20px;
}

.email-signup form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-input {
    padding: 14px 20px;
    border: 2px solid rgba(184, 149, 106, 0.4);
    background: rgba(255, 255, 255, 0.06);
    color: var(--light-text);
    font-size: 14px;
    border-radius: 5px;
    width: 250px;
    transition: all 0.3s ease;
    outline: none;
}

.email-input::placeholder {
    color: rgba(240, 240, 240, 0.5);
}

.email-input:focus {
    border-color: var(--secondary-gold);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 15px rgba(184, 149, 106, 0.4);
}

.subscribe-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #1a1a1a;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 149, 106, 0.4);
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 149, 106, 0.6);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 10px;
    font-size: 13px;
    color: var(--secondary-gold);
    min-height: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .subtitle {
        font-size: 16px;
    }

    .description {
        font-size: 14px;
    }

    .logo {
        width: 140px;
    }

    .email-input {
        width: 100%;
    }

    .email-signup form {
        flex-direction: column;
        align-items: center;
    }

    .subscribe-btn {
        width: 100%;
        max-width: 100%;
    }

    .social-media {
        gap: 20px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 32px;
    }

    .logo {
        width: 120px;
    }

    .container {
        padding: 15px;
    }

    .content {
        max-width: 100%;
    }
}
