/* Rhode-Inspired Tattoo Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Outfit:wght@200;300;400;500&display=swap');
@import url(fontawesome-all.min.css);

/* ===========================
   CSS Variables - Color Palette
   =========================== */
:root {
    --nude-cream: #F5F0EB;
    --soft-blush: #F2E4E1;
    --dusty-rose: #E8D5D0;
    --warm-pink: #E5C9C3;
    --deep-blush: #D4AFA7;
    --rose-accent: #C99B91;
    --bow-pink: #EACDC7;
    --text-dark: #3D3532;
    --text-soft: #6B5D57;
}

/* ===========================
   Reset & Base Styles
   =========================== */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-soft);
    background: var(--nude-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
    animation: none !important;
    transition: none !important;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 0.02em;
    margin-bottom: 1em;
    line-height: 1.3;
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: var(--rose-accent);
    text-decoration: none;
    position: relative;
    transition: color 0.4s ease;
}

a:hover {
    color: var(--text-dark);
}

strong, b {
    font-weight: 500;
    color: var(--text-dark);
}

em, i {
    font-style: italic;
}

/* ===========================
   Gradient Backgrounds
   =========================== */
.gradient-bg {
    background:
        radial-gradient(ellipse at 30% 20%, var(--soft-blush) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, var(--dusty-rose) 0%, transparent 40%),
        var(--nude-cream);
}

.gradient-bg-alt {
    background:
        radial-gradient(ellipse at 20% 40%, var(--warm-pink) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 60%, var(--soft-blush) 0%, transparent 50%),
        var(--nude-cream);
}

/* ===========================
   Navigation
   =========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(to bottom, rgba(245, 240, 235, 0.95), rgba(245, 240, 235, 0));
    transition: all 0.4s ease;
}

#header.scrolled {
    background: rgba(245, 240, 235, 0.95);
    box-shadow: 0 2px 20px rgba(201, 155, 145, 0.1);
}

#header h1 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

#header h1 a {
    color: var(--text-dark);
}

#header nav a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-left: 2rem;
    transition: color 0.4s ease;
}

#header nav a:hover {
    color: var(--rose-accent);
}

/* Mobile Menu Toggle */
#header nav a[href="#menu"] {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--dusty-rose);
    border-radius: 50px;
    transition: all 0.4s ease;
}

#header nav a[href="#menu"]:hover {
    background: var(--soft-blush);
    border-color: var(--rose-accent);
}

/* ===========================
   Mobile Menu
   =========================== */
#menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 53, 50, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 20000;
}

#menu.visible {
    opacity: 1;
    visibility: visible;
}

#menu .inner {
    background: var(--nude-cream);
    padding: 3rem;
    border-radius: 24px;
    max-width: 90%;
    width: 400px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

#menu.visible .inner {
    transform: translateY(0);
}

#menu h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--dusty-rose);
}

#menu .links {
    list-style: none;
}

#menu .links li {
    margin-bottom: 0.5rem;
}

#menu .links a {
    display: block;
    padding: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.3s ease;
}

#menu .links a:hover {
    background: var(--soft-blush);
    color: var(--rose-accent);
}

#menu .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--nude-cream);
    transition: transform 0.3s ease;
}

#menu .close:hover {
    transform: rotate(90deg);
}

/* ===========================
   Hero Section
   =========================== */
#banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

#banner .inner {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

#banner .eyebrow {
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose-accent);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

#banner h2 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

#banner h2 .accent {
    color: var(--rose-accent);
    font-style: italic;
}

#banner p {
    font-size: 1.3rem;
    color: var(--text-soft);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

#banner .actions {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* ===========================
   Buttons
   =========================== */
.button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--text-dark);
    color: var(--nude-cream);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.button:hover {
    background: var(--rose-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 155, 145, 0.3);
    color: white;
}

.button.secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--dusty-rose);
}

.button.secondary:hover {
    background: var(--soft-blush);
    border-color: var(--rose-accent);
    color: var(--text-dark);
}

/* ===========================
   Floating Decorative Elements
   =========================== */

/* Subtle Nude Pink Circles */
.circle {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
    animation: floatCircle 8s ease-in-out infinite;
}

.circle.circle-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(234, 205, 199, 0.4) 0%, rgba(234, 205, 199, 0.1) 70%, transparent 100%);
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.circle.circle-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 167, 0.3) 0%, rgba(212, 175, 167, 0.08) 70%, transparent 100%);
    bottom: 20%;
    left: 8%;
    animation-delay: 1.5s;
}

.circle.circle-3 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(229, 201, 195, 0.35) 0%, rgba(229, 201, 195, 0.12) 70%, transparent 100%);
    top: 50%;
    right: 15%;
    animation-delay: 3s;
}

.circle.circle-4 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(242, 228, 225, 0.3) 0%, rgba(242, 228, 225, 0.1) 70%, transparent 100%);
    top: 70%;
    left: 12%;
    animation-delay: 2s;
}

.circle.circle-5 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, rgba(232, 213, 208, 0.32) 0%, rgba(232, 213, 208, 0.1) 70%, transparent 100%);
    top: 35%;
    left: 5%;
    animation-delay: 2.5s;
}

.circle.circle-6 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, rgba(201, 155, 145, 0.25) 0%, rgba(201, 155, 145, 0.08) 70%, transparent 100%);
    bottom: 35%;
    right: 20%;
    animation-delay: 1s;
}

/* Star Sparkles */
.sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: sparkleShine 3s ease-in-out infinite;
}

.sparkle.sparkle-1 {
    width: 20px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.sparkle.sparkle-2 {
    width: 16px;
    top: 45%;
    right: 18%;
    animation-delay: 0.8s;
}

.sparkle.sparkle-3 {
    width: 18px;
    bottom: 30%;
    left: 10%;
    animation-delay: 1.6s;
}

.sparkle.sparkle-4 {
    width: 22px;
    top: 65%;
    right: 25%;
    animation-delay: 2.4s;
}

.sparkle.sparkle-5 {
    width: 17px;
    bottom: 15%;
    right: 8%;
    animation-delay: 1.2s;
}

.sparkle.sparkle-6 {
    width: 19px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.sparkle.sparkle-7 {
    width: 21px;
    top: 30%;
    right: 30%;
    animation-delay: 0.4s;
}

.sparkle.sparkle-8 {
    width: 18px;
    bottom: 40%;
    right: 12%;
    animation-delay: 3s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 0.3;
    }
}

@keyframes sparkleShine {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(0deg);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2) rotate(180deg);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Sections
   =========================== */
section {
    padding: 5rem 2rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-soft);
}

/* ===========================
   Cards
   =========================== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
}

.card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(201, 155, 145, 0.1);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(201, 155, 145, 0.15);
}

.card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.card p, .card ul {
    color: var(--text-soft);
    font-size: 1.1rem;
}

.card ul {
    list-style: none;
    padding: 0;
}

.card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--rose-accent);
}

/* ===========================
   About Section
   =========================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.3s;
}

.about-image img {
    width: auto;
    max-width: 100%;
    max-height: 70vh;
    margin: 0 auto;
    display: block;
    border-radius: 200px 200px 20px 20px;
    box-shadow: 0 20px 60px rgba(201, 155, 145, 0.2);
}

.about-content {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.6s;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2rem;
    color: var(--rose-accent);
    margin-top: 2rem;
}

/* ===========================
   Booking Banner
   =========================== */
.booking-banner {
    background: var(--text-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 5rem 2rem;
}

.booking-banner:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 50%, rgba(201, 155, 145, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(228, 201, 195, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.booking-banner .inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.booking-banner h2 {
    color: var(--nude-cream);
    margin-bottom: 1.5rem;
}

.booking-banner p {
    color: var(--dusty-rose);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.booking-banner .button {
    background: var(--rose-accent);
}

.booking-banner .button:hover {
    background: var(--warm-pink);
}

/* ===========================
   Forms
   =========================== */
form {
    max-width: 800px;
    margin: 0 auto;
}

.fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
}

.field.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    padding: 1.1rem 1.5rem;
    border: 1px solid var(--dusty-rose);
    border-radius: 12px;
    background: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--rose-accent);
    box-shadow: 0 0 0 4px rgba(201, 155, 145, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

input[type="submit"] {
    padding: 1.2rem 3rem;
    background: var(--text-dark);
    color: var(--nude-cream);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

input[type="submit"]:hover {
    background: var(--rose-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 155, 145, 0.3);
}

/* ===========================
   Footer
   =========================== */
#footer {
    background: var(--soft-blush);
    padding: 5rem 2rem 3rem;
}

#footer .inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

#footer h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

#footer p {
    color: var(--text-soft);
    margin-bottom: 2rem;
}

.contact {
    list-style: none;
}

.contact li {
    margin-bottom: 1.5rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-soft);
    font-size: 1.1rem;
}

.contact li:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--rose-accent);
}

.copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--dusty-rose);
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.copyright li {
    color: var(--text-soft);
    font-size: 1rem;
}

.copyright a {
    color: var(--text-dark);
}

/* ===========================
   Popup
   =========================== */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--text-dark);
    color: white;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 30000;
    display: none;
    text-align: center;
}

.popup.show {
    display: block;
    animation: popupFade 0.3s ease;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ===========================
   Scroll Reveal
   =========================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Utilities
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    #footer .inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .circle {
        display: none;
    }

    /* Keep sparkles visible but make them smaller on mobile */
    .sparkle {
        width: 14px !important;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 1rem 1.5rem;
    }

    #header nav a:not([href="#menu"]) {
        display: none;
    }

    #banner {
        padding: 6rem 1.5rem 3rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .fields {
        grid-template-columns: 1fr;
    }

    .cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    #banner h2 {
        font-size: 2.5rem;
    }

    .button {
        padding: 0.9rem 2rem;
        font-size: 0.7rem;
    }
}

/* ===========================
   Image Styles
   =========================== */
.image {
    display: block;
    width: 100%;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

.image.left {
    float: left;
    margin: 0 2rem 1rem 0;
    max-width: 40%;
}

.image.fit img {
    width: 100%;
}

/* ===========================
   Lists
   =========================== */
ul.alt {
    list-style: none;
    padding: 0;
}

ul.alt li {
    padding: 1rem 0;
    border-top: 1px solid var(--dusty-rose);
}

ul.alt li:first-child {
    border-top: none;
    padding-top: 0;
}

ul.actions {
    list-style: none;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

ul.icons {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
}

/* ===========================
   Instagram Embed Styling
   =========================== */
.elfsight-app-146a2d68-5401-4214-98ca-e2572a467eb8 {
    margin: 3rem 0;
}

/* ===========================
   Page Wrapper
   =========================== */
#page-wrapper {
    position: relative;
}

body.is-menu-visible #page-wrapper {
    filter: blur(5px);
}
