:root {
    --bg-color: #ffffff;
    --text-color: #1a1a1a;
    --accent-color: #4a4a4a;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Header */
header {
    padding: 1rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: #fff;
}

.logo {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Promotional Ticker */
.promo-ticker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 0;
    overflow: hidden;
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.ticker-content span {
    padding: 0 3rem;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Pause animation on hover */
.promo-ticker:hover .ticker-content {
    animation-play-state: paused;
}

/* Hero */
.hero {
    text-align: center;
    padding: 1.5rem 1rem;
    background-color: var(--light-gray);
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    transition: height 0.3s ease;
    margin-bottom: 1rem;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.slide h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    max-width: 600px;
}

.slide-italic {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--accent-color);
}

.btn-cta {
    display: inline-block;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: opacity 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-cta:hover {
    opacity: 0.9;
}

/* Gallery */
.gallery-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.gallery-item:hover img {
    filter: grayscale(0%);
}

/* About Section */
.about-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-color);
}

.about-content p:first-of-type {
    font-size: 1.15rem;
    text-align: center;
}

.about-content p:last-of-type {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.about-content strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Guidelines */
.guidelines-section {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    text-align: center;
}

.guidelines-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.guidelines-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.guidelines-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.modal-content {
    background-color: var(--bg-color);
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-display {
    background-color: var(--light-gray);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 2rem;
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    display: block;
    margin-top: 0.5rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    margin-top: 2rem;
    color: var(--accent-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 1rem;
    }

    .slide h2 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .promo-ticker {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }

    .gallery-section {
        padding: 3rem 1rem;
    }

    .about-section {
        padding: 3rem 1rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .about-content p:first-of-type,
    .about-content p:last-of-type {
        font-size: 1.05rem;
    }
}