:root {
    --warm-white: #FBF7F0;
    --soft-beige: #F5EAD8;
    --honey-light: #E8D5B5;
    --honey-medium: #D4B896;
    --honey-deep: #C9A56A;
    --warm-brown: #9B7E52;
    --text-dark: #3A3A3A;
    --text-light: #6B6B6B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    color: var(--text-dark);
    background: var(--warm-white);
    overflow: hidden;
    height: 100vh;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
}

.content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Area */
.logo-area {
    margin-bottom: 3rem;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 300;
    color: var(--honey-deep);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--warm-brown);
    font-weight: 400;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

/* Main Message */
.main-message {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.main-message h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--honey-deep);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.1s;
}

.description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.4s;
}

/* Location Info */
.location-info {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--honey-light);
    border-bottom: 1px solid var(--honey-light);
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.7s;
}

.address {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--warm-brown);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.contact-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Crimson Text', serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    text-decoration: none;
    border: 2px solid;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.03em;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--honey-deep);
    color: var(--warm-white);
    border-color: var(--honey-deep);
}

.btn-primary::before {
    background: var(--honey-medium);
}

.btn-primary:hover {
    color: var(--warm-white);
    border-color: var(--honey-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--warm-brown);
    border-color: var(--warm-brown);
}

.btn-secondary::before {
    background: var(--warm-brown);
}

.btn-secondary:hover {
    color: var(--warm-white);
}

/* Decorative Element */
.decorative-element {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--honey-light) 50%, transparent 100%);
    margin: 3rem auto 0;
    opacity: 0;
    animation: expandWidth 1.5s ease forwards 2.3s;
}

@keyframes expandWidth {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Background Shapes */
.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--honey-light) 0%, transparent 70%);
    top: -15%;
    right: -10%;
    animation: float 25s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--honey-medium) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
    animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--warm-brown) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    .logo-area {
        margin-bottom: 2rem;
    }
    
    .main-message {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .location-info {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }
    
    .shape-1 {
        width: 350px;
        height: 350px;
    }
    
    .shape-2 {
        width: 300px;
        height: 300px;
    }
    
    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact-buttons {
        max-width: 100%;
    }
    
    .shape-1,
    .shape-2 {
        width: 250px;
        height: 250px;
    }
    
    .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
body {
    opacity: 0;
    animation: bodyFadeIn 0.8s ease forwards;
}

@keyframes bodyFadeIn {
    to {
        opacity: 1;
    }
}