:root {
    --bg-color: #0c0c0c;
    --text-color: #f4f4f4;
    --accent-color: #C8B58F; /* Champagne Gold */
    --accent-hover: #e6d1a6;
    --glass-bg: rgba(12, 12, 12, 0.75);
    --glass-border: rgba(255, 255, 255, 0.12);
}

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

body, html {
    min-height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
}

body {
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(200, 181, 143, 0.08) 0%, rgba(0,0,0,0.85) 100%);
    background-size: 150% 150%;
    animation: ambientShift 12s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes ambientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.container {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 4px; /* Gallery plaque style - sharp corners or very slight round */
    padding: 5rem 4rem;
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.95), inset 0 0 0 1px rgba(255,255,255,0.03);
    animation: fadeIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

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

.container > header, 
.container > main > .description, 
.container > main > .social-links, 
.container > main > .contact-section {
    opacity: 0;
    animation: fadeInStagger 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.container > header { animation-delay: 0.4s; }
.container > main > .description { animation-delay: 0.7s; }
.container > main > .social-links { animation-delay: 1.0s; }
.container > main > .contact-section { animation-delay: 1.3s; }

@keyframes fadeInStagger {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    margin-bottom: 2.5rem;
}

.logo-container {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
}

.logo-img {
    max-width: 100%;
    height: auto;
    width: 300px;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.05));
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

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

.logo-img:hover {
    transform: scale(1.05) translateY(-4px) !important;
    filter: drop-shadow(0 15px 25px rgba(200, 181, 143, 0.25));
    animation-play-state: paused;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.divider {
    height: 1px;
    width: 0px;
    background: var(--accent-color);
    margin: 0 auto 1.8rem;
    border-radius: 0;
    box-shadow: 0 0 15px rgba(200, 181, 143, 0.6);
    animation: expandWidth 1.2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

@keyframes expandWidth {
    to { width: 80px; }
}

.subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    color: var(--accent-color);
    text-transform: uppercase;
}

main {
    margin-bottom: 2rem;
}

.description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #dfdfdf;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.03em;
}

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

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%; /* Perfect circles */
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-color);
    font-size: 2.2rem;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
}

.social-btn:hover {
    color: #000;
    border-color: var(--accent-hover);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 30px rgba(200, 181, 143, 0.4), 0 0 20px rgba(200, 181, 143, 0.2);
}

.social-btn:hover::before {
    transform: scale(1);
}

footer p {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.05em;
    font-weight: 300;
}

.contact-section {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--glass-border);
    text-align: left;
}

.contact-section h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-align: center;
    letter-spacing: 0.15em;
    font-weight: 400;
}

.contact-section p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section p i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--accent-hover);
}

.map-container {
    margin-top: 2rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 220px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.map-container iframe {
    filter: grayscale(100%) invert(100%) contrast(1.1) sepia(20%) hue-rotate(5deg);
    transition: filter 0.6s ease;
}

.map-container iframe:hover {
    filter: grayscale(80%) invert(90%) contrast(1.2) sepia(20%) hue-rotate(5deg);
}

@media (max-width: 768px) {
    body {
        padding: 1.5rem 0;
    }
    .container {
        padding: 2.5rem 1.5rem;
        width: 95%;
    }
    .logo-img {
        width: 220px;
    }
    .subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }
    .description {
        font-size: 0.95rem;
    }
    .social-links {
        gap: 1.2rem;
    }
    .social-btn {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }
    .contact-section h3 {
        font-size: 1.3rem;
    }
    .contact-section p {
        font-size: 0.85rem;
    }
    .map-container {
        height: 220px;
    }
}
