/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    font-family:
        "Montserrat",
        system-ui,
        -apple-system,
        sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #2d2d2d;
    background-color: #f5f5f0;
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    font: inherit;
    cursor: pointer;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #b8964f;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, #b8964f 0%, #d4b676 50%, #b8964f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
    color: #b8964f;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #8b6e39;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid #b8964f;
    outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    padding: 0.75em 2em;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    background: #b8964f;
    border: 2px solid #b8964f;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(184, 150, 79, 0.2);
}

.btn:hover,
.btn:focus {
    color: #b8964f;
    background: transparent;
    border-color: #b8964f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(184, 150, 79, 0.3);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    width: 100%;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.content-wrapper {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.logo {
    margin: 0 auto 2rem;
}

.content-wrapper h1 {
}

.content-wrapper p:nth-of-type(1) {
}

.content-wrapper p:nth-of-type(2) {
}

.content-wrapper p:nth-of-type(3) {
}

.contact-info {
    margin: 2rem 0;
}

.credit {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   Social Icons
   ========================================================================== */

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184, 150, 79, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover,
.social-icons a:focus {
    background: rgba(184, 150, 79, 0.2);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 4px 12px rgba(184, 150, 79, 0.3);
}

.social-icons svg {
    color: #b8964f;
    transition: all 0.3s ease;
}

.social-icons a:hover svg {
    transform: scale(1.1);
}

/* ==========================================================================
   Cookie Consent
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    color: #1b1b1b;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideUp 0.3s ease;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #2a302e;
    text-decoration: underline;
}

.cookie-content .btn {
    flex-shrink: 0;
    margin: 0;
}

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

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

@keyframes slideInSmooth {
    from {
        transform: translateY(20px);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    60% {
        transform: translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 767px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 180px;
    }

    .content-wrapper h1 {
        font-size: 1.45rem;
    }

    .content-wrapper p {
        font-size: 0.9rem;
    }

    .cookie-content {
        padding: 1rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }

    .cookie-content .btn {
        width: 100%;
    }
}
/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    .cookie-banner,
    .social-icons {
        display: none !important;
    }
}
