:root {
    --bg: #faf7f3;
    --text-dark: #2a2a2a;
    --text-light: #6b6b6b;
    --accent: #b0895b;
    --maxw: 950px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg);
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    padding: 30px 16px;
}

.wrapper {
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center;
}

.logo img {
    width: 150px;
    height: auto;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 46px;
    margin-top: 10px;
}

.sub-text {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 8px;
}

.notify-btn {
    margin-top: 22px;
    padding: 12px 26px;
    border-radius: 8px;
    border: 1.5px solid var(--accent);
    background: var(--accent);
    color: white;
    cursor: pointer;
}

.social {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social a {
    font-size: 22px;
    color: var(--text-dark);
}

.lion {
    margin-top: 35px;
}

.lion img {
    width: 340px;
    max-width: 90%;
    height: auto;
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    .sub-text {
        font-size: 16px;
    }
    .notify-btn {
        font-size: 15px;
    }
    .lion img {
        width: 260px;
    }
}

/* Social Icons */
.social {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.social-icon {
    font-size: 32px;
    text-decoration: none;
    color: var(--text-dark);
    transition: 0.3s ease;
}

.social-icon:hover {
    color: var(--accent);
}

/* Notify Popup */
.notify-box {
    margin-top: 20px;
    display: none;
}

.notify-box input {
    padding: 10px;
    width: 240px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 8px;
}

.notify-submit {
    padding: 10px 18px;
    border-radius: 6px;
    border: none;
    background: var(--accent);
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.notify-submit:hover {
    background: #8a6c49;
}

.social {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-icon img {
    width: 34px;
    height: 34px;
    transition: 0.3s ease;
    opacity: 0.92;
}

.social-icon:hover img {
    transform: scale(1.12);
    opacity: 1;
    filter: drop-shadow(0 0 6px #b0895b);
}
/* ==============================
   GLOBAL RESET + THEME
============================== */
body {
    margin: 0;
    padding: 0;
    background: #faf7f3;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: center;
    text-align: center;
}

.wrapper {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ==============================
   LOGO
============================== */
.logo img {
    width: 120px;
    margin-bottom: 20px;
}

/* ==============================
   HEADING
============================== */
h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #2b2b2b;
}

.sub-text {
    font-size: 16px;
    color: #444;
    margin: 0;
}

/* ==============================
   BUTTON
============================== */
.notify-btn {
    margin-top: 24px;
    padding: 12px 34px;
    background: #b0895b;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    transition: 0.25s ease;
}

.notify-btn:hover {
    background: #8a6c49;
}

/* Popup */
.notify-box {
    margin-top: 16px;
    display: none;
}

.notify-box input {
    width: 65%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
}

.notify-submit {
    padding: 10px 16px;
    background: #b0895b;
    color: #fff;
    border: none;
    border-radius: 6px;
    margin-left: 8px;
    font-size: 15px;
    cursor: pointer;
}

/* ==============================
   SOCIAL ICONS
============================== */
.social {
    margin: 28px 0;
}

.social-icon img {
    width: 40px;
    margin: 0 10px;
    opacity: 0.9;
    transition: 0.25s;
}

.social-icon img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ==============================
   LION ARTWORK
============================== */
.lion img {
    width: 300px;
    margin-top: 20px;
}

/* ==============================
   MOBILE RESPONSIVE FIXES
============================== */
@media (max-width: 600px) {
    .wrapper {
        margin-top: 20px;
        padding: 0 16px;
    }

    .logo img {
        width: 90px;
    }

    h1 {
        font-size: 34px;
    }

    .sub-text {
        font-size: 14px;
    }

    .notify-btn {
        font-size: 16px;
        padding: 10px 26px;
    }

    .lion img {
        width: 220px;
        margin-top: 10px;
    }

    .social-icon img {
        width: 34px;
    }
}

