/* ============================
   CSS Reset & Base
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0d0d0d;
    --color-bg-dark: #000000;
    --color-gold: #d4a017;
    --color-gold-light: #e6b422;
    --color-gold-border: #c49b15;
    --color-white: #ffffff;
    --color-gray-light: #cccccc;
    --color-gray: #999999;
    --color-banner-bg: #2a2a2a;
    --color-footer-bg: #1a1a1a;
    --color-grid-line: rgba(255, 255, 255, 0.04);
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============================
   Grid Background
   ============================ */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(var(--color-grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
}

/* ============================
   Logo Section
   ============================ */
.logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 30px;
}

.logo-frame {
    width: 220px;
    height: 220px;
    background-color: var(--color-bg-dark);
    border: 2px solid var(--color-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow:
        0 0 0 6px var(--color-bg-dark),
        0 0 0 8px var(--color-gold-border);
}

/* Corner accents */
.logo-frame::before,
.logo-frame::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--color-gold);
    border-style: solid;
}

.logo-frame::before {
    top: -10px;
    left: -10px;
    border-width: 2px 0 0 2px;
}

.logo-frame::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 2px 2px 0;
}

.logo-img {
    max-width: 170px;
    max-height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.3));
}

/* ============================
   Divider
   ============================ */
.divider {
    display: flex;
    justify-content: center;
    padding: 20px 0 30px;
}

.divider-line {
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

/* ============================
   Banner Section
   ============================ */
.banner-section {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 60px;
}

.banner {
    background-color: var(--color-banner-bg);
    border-left: 4px solid var(--color-gold);
    padding: 30px 50px;
    max-width: 650px;
    width: 100%;
    text-align: center;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.banner-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.3;
    color: var(--color-white);
    text-transform: uppercase;
}

.banner-text em {
    font-style: italic;
    color: var(--color-gold-light);
}

/* ============================
   Contact Footer
   ============================ */
.contact-footer {
    width: 100%;
    background-color: var(--color-footer-bg);
    border-top: 1px solid rgba(212, 160, 23, 0.2);
    padding: 40px 20px;
    margin-top: auto;
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    padding: 10px 15px;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold-light);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-gold);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--color-gray-light);
    margin-bottom: 8px;
    line-height: 1.5;
    word-break: break-word;
}

.contact-info .address {
    font-size: 0.78rem;
}

.icon {
    width: 15px;
    height: 15px;
    min-width: 15px;
    color: var(--color-gold);
    margin-top: 2px;
}

.instagram {
    color: var(--color-gold-light) !important;
    font-weight: 500;
}

.instagram-icon {
    color: var(--color-gold-light);
}

/* Links */
.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.instagram a {
    color: var(--color-gold-light);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .logo-frame {
        width: 180px;
        height: 180px;
    }

    .logo-img {
        max-width: 140px;
        max-height: 140px;
    }

    .banner {
        padding: 25px 30px;
    }

    .banner-text {
        font-size: 1.5rem;
    }

    .logo-section {
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .banner-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }

    .banner {
        padding: 20px 20px;
    }

    .logo-frame {
        width: 160px;
        height: 160px;
    }

    .logo-img {
        max-width: 120px;
        max-height: 120px;
    }
}
