:root {
    --black: #111111;
    --white: #ffffff;
    --gold: #E6D5B8;
    --hot-pink: #ff1493;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-script: 'Alex Brush', cursive;
}

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
}

.script-text {
    font-family: var(--font-script);
    font-size: 1.5em;
    margin-right: -10px;
    color: var(--hot-pink);
}

a {
    text-decoration: none;
    color: inherit;
}

nav {
    background-color: var(--black); 
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a:hover {
    color: var(--hot-pink);
    transition: color 0.3s;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--gold);
}

.book {
    border: 1px solid var(--gold);
    padding: 0.5rem 1rem;
    color: var(--gold);
    transition: all 0.3s;
}

.book:hover {
    background-color: var(--gold);
    color: var(--black);
}

.hero {
    min-height: 100vh;
    scroll-snap-align: start;
    background: url('./assets/splash_big.jpeg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
}

.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;
    width: 100%;
}

.main-hero-logo {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.6)); 
    animation: fadeIn 1.5s ease-in-out;
}

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

.as-seen-in {
    scroll-snap-align: start;
    background-color: var(--gold);
    color: var(--black);
    padding: 2rem 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logos {
    display: flex;
    gap: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.welcome-section {
    min-height: 100vh;
    scroll-snap-align: start;
    background-color: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 6rem 10%;
    gap: 5rem;
}

.welcome-text {
    flex: 1;
    text-align: center;
}

.welcome-text h3 {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold);
}

.welcome-text h2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.welcome-text p {
    font-size: 0.85rem;
    margin-bottom: 2rem;
    color: #cccccc;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.welcome-portrait {
    width: 100%;
    max-width: 450px; 
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 10;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 75%);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 75%);
}

.arch-image {
    width: 300px;
    height: 450px;
    background: url('https://via.placeholder.com/300x450/444/fff?text=Main+Portrait') center/cover;
    border-radius: 150px 150px 0 0;
}

.float-img {
    position: absolute;
    border: 5px solid var(--gold);
}

.float-img-1 {
    width: 100px;
    height: 100px;
    background: url('https://via.placeholder.com/100/666/fff?text=1') center/cover;
    top: 20%;
    left: 10%;
}

.float-img-2 {
    width: 80px;
    height: 80px;
    background: url('https://via.placeholder.com/80/666/fff?text=2') center/cover;
    bottom: 10%;
    left: 20%;
    border-radius: 50%;
}

.float-img-3 {
    width: 90px;
    height: 90px;
    background: url('https://via.placeholder.com/90/666/fff?text=3') center/cover;
    bottom: 15%;
    right: 15%;
}

.services-section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    padding: 6rem 10%;
    text-align: center;
}

.services-header {
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black);
}

.services-header p {
    font-size: 0.9rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.service-img {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    margin-bottom: -1.5rem; 
}

.service-label {
    background-color: var(--black);
    color: var(--gold);
    padding: 1rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 80%;
    text-align: center;
    z-index: 10;
}

.price-list {
    list-style: none;
    width: 100%;
    padding: 2.5rem 1.5rem 0 1.5rem; 
    text-align: left; 
}

.price-list li {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.8rem;
    border-bottom: 1px dotted #e0e0e0; 
    padding-bottom: 0.2rem;
}

.price-list li span:first-child {
    padding-right: 10px; 
}

.price-list li span:last-child {
    font-weight: 600;
    color: var(--hot-pink);
    white-space: nowrap; 
}

.price-list-item {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 0.8rem;
    border-bottom: 1px dotted #e0e0e0; 
    padding-bottom: 0.2rem;
}

.price-list-item span:last-child {
    font-weight: 600;
    color: var(--hot-pink);
    white-space: nowrap; 
}

.accordion-list {
    list-style: none;
    width: 100%;
    padding: 2.5rem 1.5rem 0 1.5rem; 
    text-align: left; 
}

.accordion-item {
    border-bottom: 1px dotted #e0e0e0; 
    margin-bottom: 0.8rem;
    padding-bottom: 0.2rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between; 
    align-items: flex-end;
    font-size: 0.75rem;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--black);
}

.accordion-header span:first-child {
    padding-right: 10px; 
}

.accordion-header span:first-child::after {
    content: ' +';
    color: var(--gold);
    font-weight: bold;
}

.accordion-item.active .accordion-header span:first-child::after {
    content: ' -';
}

.accordion-header span:last-child {
    font-weight: 600;
    color: var(--hot-pink);
    white-space: nowrap; 
}

.accordion-content {
    display: none;
    padding-top: 0.8rem;
    padding-bottom: 0.5rem;
    font-size: 0.7rem;
    color: #666;
    line-height: 1.5;
    text-transform: none; 
}

.accordion-item.active .accordion-content {
    display: block;
}

.list-spacer {
    border-bottom: none !important;
    margin-bottom: 1.5rem !important;
    padding: 0 !important;
}

.booking-section {
    min-height: 100vh;
    scroll-snap-align: start;
    background-color: var(--hot-pink);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 10%;
}

.booking-content h2 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.booking-content h2 .script-text {
    color: var(--white);
}

.booking-content h3 {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.booking-content p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
    font-size: 0.95rem;
    line-height: 1.8;
}

.site-footer {
    scroll-snap-align: start;
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 10% 2rem 10%;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.footer-info p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.footer-social a {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--white);
}

.footer-social a:hover {
    transform: translateY(-4px);
    color: var(--hot-pink);
}

.footer-bottom {
    padding-top: 2rem;
    font-size: 0.75rem;
    color: #777777;
    letter-spacing: 1px;
}

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--gold);
    width: 100%;
    max-width: 1200px;
    margin: 1.5rem auto;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: var(--black);
    color: var(--hot-pink);
    border: 2px solid var(--hot-pink);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-to-top:hover {
    background-color: var(--hot-pink);
    color: var(--white);
    transform: translateY(-5px);
}

.back-to-top:active,
.back-to-top:focus {
    background-color: var(--black);
    color: var(--hot-pink);
    border: 2px solid var(--hot-pink);
    outline: none;
}

@media (min-width: 769px) {
    .site-footer {
        padding: 2rem 10% 1.5rem 10%; 
        display: flex;
        flex-direction: column; 
        align-items: center;
    }

    .footer-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: row;
        justify-content: center; 
        align-items: center;
        margin-bottom: 0;
        gap: 4rem; 
    }

    .footer-info {
        display: flex;
        align-items: center;
        gap: 3rem; 
        text-align: left;
    }

    .footer-info h4, 
    .footer-info p {
        margin-bottom: 0; 
    }

    .footer-bottom {
        padding-top: 0.5rem;
        font-size: 0.75rem;
        color: #777777;
        letter-spacing: 1px;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .services-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    .welcome-section, .services-section { 
        padding: 4rem 5%; 
    }

    nav {
        padding: 1rem 5%;
    }

    .hamburger {
        display: block; 
    }

    .nav-links { 
        position: fixed;
        top: -100%; 
        left: 0; 
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.4s ease-in-out; 
        box-shadow: 0 10px 15px rgba(0,0,0,0.3);
        z-index: -1; 
    }

    .nav-links a {
        margin: 1.5rem 0;
        display: block; 
        font-size: 1.2rem;
    }

    .nav-links.active {
        top: 70px; 
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }   

    .as-seen-in { 
        flex-direction: column; 
        gap: 1.5rem; 
        text-align: center;
    }
    
    .logos {
        flex-wrap: wrap; 
        justify-content: center;
        gap: 1.5rem;
    }

    .welcome-section { 
        flex-direction: column; 
        gap: 3rem;
    }
    
    .welcome-text h2 { 
        font-size: 2rem; 
    }
    
    .arch-image {
        width: 100%;
        max-width: 300px;
    }

    .services-header h2 { 
        font-size: 2.2rem; 
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
    }
    
    .service-label {
        width: 90%;
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .price-list {
        padding: 2rem 1rem 0 1rem;
    }
    
    .price-list li {
        font-size: 0.65rem; 
    }
}