/* Base styles */
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-primary: #9b51e0;
    --color-secondary: #2f0424;
    --color-base: #818ad6;
    --color-body-text: #ffffff;
    --color-section-bg: #9b51e0;
    --font-family: "Josefin Sans", sans-serif;
}

@font-face {
    font-family: "Josefin Sans";
    font-style: normal;
    font-weight: 400;
    src: url('../assets/fonts/JosefinSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "Josefin Sans";
    font-style: normal;
    font-weight: 600;
    src: url('../assets/fonts/JosefinSans-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: "Josefin Sans";
    font-style: normal;
    font-weight: 700;
    src: url('../assets/fonts/JosefinSans-Bold.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: 17px;
    line-height: 1.5;
    color: var(--color-body-text);
    background-color: var(--color-black);
}

a {
    color: var(--color-section-bg);
    text-decoration: none;
}

a:hover {
    color: var(--color-primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    color: var(--color-white);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Layout */
.site-container {
    width: 100%;
    margin: 0 auto;
}

/* Navigation */
.top-menu {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-menu li {
    margin-left: 1.5rem;
}

.top-menu a {
    color: var(--color-body-text);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 0.5rem 0;
    display: inline-block;
}

.top-menu a:hover {
    color: var(--color-primary);
}

/* Parallax Banners - Common Styles */
.parallax-banner {
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This creates the parallax effect */
    background-color: var(--color-black);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    width: 100vw;
    max-width: 100%;
}

.parallax-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.parallax-content, .hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.parallax-content h2, .hero-content h2 {
    font-size: 36px;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p, .hero-content p {
    font-size: 20px;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Hero Banner */
.hero-banner {
    background-image: url('../assets/images/triple-moon-banner.png');
    height: 100vh;
    min-height: 600px;
}

/* Services Banner */
.banner-services {
    background-image: url('../assets/images/services-banner.png');
    height: 50vh;
    min-height: 400px;
}

/* Testimonials Banner */
.banner-testimonials {
    background-image: url('../assets/images/testimonials-banner.png');
    height: 50vh;
    min-height: 400px;
}

/* Contact Banner */
.banner-contact {
    background-image: url('../assets/images/contact-banner.png');
    height: 50vh;
    min-height: 400px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.button {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 2;
    background-color: var(--color-black);
}

/* Shared section styling */
.about-section,
.services-section,
.testimonials-section,
.contact-section {
    max-width: 1170px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* About Section with Image */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(155, 81, 224, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Shared card styling */
.service-card,
.testimonial-card {
    background-color: rgba(155, 81, 224, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

/* Service card specific */
.service-card {
    display: flex;
    flex-direction: column;
}

/* Testimonial card specific */
.testimonial-card {
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    margin-bottom: 1.5rem;
    border-radius: 6px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-price {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(155, 81, 224, 0.2);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 0;
    left: 1rem;
    font-size: 4rem;
    color: var(--color-primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-author {
    text-align: right;
    font-style: italic;
    color: var(--color-primary);
}

/* Contact Section */
.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: rgba(155, 81, 224, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(47, 4, 36, 0.3);
    border-radius: 8px;
}

.contact-hours h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(155, 81, 224, 0.3);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-white);
    border-radius: 6px;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(155, 81, 224, 0.2);
}

/* Price List */
.price-list {
    margin: 2rem 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(155, 81, 224, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-name {
    font-weight: 600;
}

.price-value {
    color: var(--color-primary);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: var(--color-secondary);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1170px;
    margin: 0 auto;
}

.footer-logo {
    max-width: 100px;
    margin: 0 auto 1.5rem;
    filter: brightness(1.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-links a {
    color: var(--color-primary);
}

.social-links a:hover {
    color: var(--color-white);
}

/* Book Now Button */
.book-now-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(155, 81, 224, 0.4);
    z-index: 99;
    transition: all 0.3s ease, opacity 0.5s ease, visibility 0.5s ease;
}

.book-now-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(155, 81, 224, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .top-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-menu li {
        margin: 0.5rem;
    }
    
    .hero-content h2,
    .parallax-content h2 {
        font-size: 28px;
    }
    
    .hero-content p,
    .parallax-content p {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-bottom: 1.5rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Disable parallax on mobile for better performance */
    .parallax-banner {
        background-attachment: scroll;
        height: auto;
        min-height: 300px;
    }
    
    .book-now-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
} 