/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a227;
    --gold-light: #f0c94d;
    --gold-dark: #8a6c0e;
    --bg-dark: #0a0a0f;
    --bg-mid: #111118;
    --nav-bg: rgba(5, 5, 10, 0.92);
    --red-accent: #e63232;
    --text-light: #f0e6cc;
    --card-bg: rgba(20, 20, 30, 0.85);
    --border-glow: rgba(201, 162, 39, 0.4);
    --font-main: "Jersey 10", "Cinzel", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(ellipse at 20% 20%, rgba(201, 162, 39, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(230, 50, 50, 0.05) 0%, transparent 50%),
        url(../images/Designer-10.jpeg);
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    color: var(--text-light);
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
nav {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    text-align: center;
    padding-bottom: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

#logo {
    display: inline-block;
}

#logo img {
    margin-top: 16px;
    width: 130px;
    border-radius: 12px;
    box-shadow: 0 0 18px var(--gold), 0 0 40px rgba(201, 162, 39, 0.3);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
    display: block;
}

#logo:hover img {
    transform: scale(1.08);
    box-shadow: 0 0 28px var(--gold-light), 0 0 60px rgba(240, 201, 77, 0.4);
}

.navigation ul {
    list-style: none;
    padding: 8px 0 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.navigation ul li {
    display: inline;
}

.navigation ul li a {
    color: var(--text-light);
    font-size: 22px;
    text-decoration: none;
    letter-spacing: 2px;
    padding: 6px 22px;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease, letter-spacing 0.25s ease;
    position: relative;
}

.navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.navigation ul li a:hover {
    color: var(--gold-light);
    letter-spacing: 3px;
}

.navigation ul li a:hover::after {
    width: 80%;
    left: 10%;
}

/* ===== MAIN SECTION ===== */
.section01 {
    padding: 60px 20px 80px;
    text-align: center;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button {
    border: 2px solid var(--border-glow);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    background: var(--card-bg);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.6),
                0 0 0 1px rgba(201, 162, 39, 0.15);
    max-width: 600px;
    width: 90vw;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 1;
    pointer-events: none;
}

.button:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 30px 80px rgba(201, 162, 39, 0.4),
                0 0 0 2px var(--gold);
}

.button:hover::before {
    opacity: 1;
}

.button img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.35s ease;
}

.button:hover img {
    filter: brightness(1.12) saturate(1.2);
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, rgba(5, 5, 10, 0.95) 0%, #050508 100%);
    border-top: 1px solid var(--border-glow);
    color: var(--text-light);
    padding: 40px 20px 20px;
    text-align: center;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.socialmedia {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

.socialmedia a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--border-glow);
    background: rgba(201, 162, 39, 0.08);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.socialmedia a:hover {
    transform: translateY(-4px) scale(1.15);
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}

.socialmedia img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.foo,
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.foo h3 {
    margin-bottom: 14px;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
}

.foo ul {
    list-style: none;
    padding: 0;
}

.foo ul li {
    margin-bottom: 8px;
}

.foo ul li a {
    color: rgba(240, 230, 204, 0.7);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.foo ul li a:hover {
    color: var(--gold-light);
    letter-spacing: 2px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    grid-column: 1 / -1;
    font-size: 12px;
    color: rgba(240, 230, 204, 0.4);
    letter-spacing: 2px;
}
