/* ================================
   Global Styles and Reset
   ================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    overflow-x: hidden;
}

/* ================================
   Typography
   ================================ */

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ================================
   Button Styles
   ================================ */

.btn {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #c9a02e 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #c9a02e 0%, #b8941a 100%);
}

.btn-secondary {
    background: rgba(255,255,255,0.95);
    color: #8b4513;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-secondary:hover {
    background: white;
    color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.btn-review {
    background: white;
    color: #8b4513;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.btn-review:hover {
    background: linear-gradient(135deg, #f8f5f0 0%, #ffffff 100%);
    color: #8b4513;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: rgba(212, 175, 55, 0.4);
}

/* ================================
   Animations
   ================================ */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes stripe {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}