/* ===================================
   IZZY TRAP CUTZ - Style Guide
   ===================================
   Colors:
   - Plum Dark: #2D1B36
   - Plum Mid: #4A2C5E
   - Plum Light: #6B3FA0
   - Amber: #D4A574
   - Amber Dark: #B8860B
   - Cream: #F5F0EB
   - White: #FFFFFF
   - Text Dark: #1A1A1A
   - Text Light: #F5F0EB
   
   Fonts:
   - Cinzel (serif) - Headings
   - Lato (sans-serif) - Body
*/

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: #1A1A1A;
    background-color: #F5F0EB;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    line-height: 1.2;
    color: #2D1B36;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #D4A574;
    color: #2D1B36;
    border-color: #D4A574;
}

.btn-primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
    color: #F5F0EB;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #F5F0EB;
    border-color: #F5F0EB;
}

.btn-secondary:hover {
    background-color: #F5F0EB;
    color: #2D1B36;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

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

.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4A574;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #2D1B36;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(45, 27, 54, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(45, 27, 54, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #F5F0EB;
    letter-spacing: 0.15em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #F5F0EB;
}

.nav-links a:hover {
    color: #D4A574;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background-color: #D4A574;
    color: #2D1B36 !important;
    border-radius: 2px;
}

.btn-nav:hover {
    background-color: #B8860B;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #F5F0EB;
    transition: all 0.3s ease;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 27, 54, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-link {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #F5F0EB;
}

.mobile-link:hover {
    color: #D4A574;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2D1B36 0%, #4A2C5E 35%, #6B3FA0 65%, #D4A574 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/23349891/pexels-photo-23349891.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover;
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: #F5F0EB;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #F5F0EB;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 240, 235, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: #F5F0EB;
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
}

/* About Section */
.about {
    background-color: #F5F0EB;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.about-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 200px;
    height: 200px;
    background-color: #D4A574;
    z-index: -1;
}

.about-text {
    padding: 2rem 0;
}

.about-desc {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
    color: #2D1B36;
}

.about-features svg {
    color: #D4A574;
    flex-shrink: 0;
}

/* Services Section */
.services {
    background-color: #2D1B36;
}

.services .section-title {
    color: #F5F0EB;
}

.services .section-subtitle {
    color: rgba(245, 240, 235, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: rgba(245, 240, 235, 0.05);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: 4px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(245, 240, 235, 0.1);
    border-color: #D4A574;
    transform: translateY(-5px);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #D4A574;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: #D4A574;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #F5F0EB;
    margin-bottom: 1rem;
}

.service-card p {
    color: rgba(245, 240, 235, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #D4A574;
}

/* Gallery Section */
.gallery {
    background-color: #F5F0EB;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(45, 27, 54, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: 'Cinzel', serif;
    font-size: 1.125rem;
    color: #F5F0EB;
}

/* Contact Section */
.contact {
    background-color: #F5F0EB;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1.0625rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D4A574;
    border-radius: 50%;
    color: #2D1B36;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: #2D1B36;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

.contact-item a {
    color: #555;
}

.contact-item a:hover {
    color: #D4A574;
}

.contact-form-wrapper {
    background-color: #fff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(45, 27, 54, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2D1B36;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #1A1A1A;
    background-color: #F5F0EB;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4A574;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    gap: 1rem;
}

.form-success svg {
    color: #D4A574;
}

.form-success h3 {
    font-size: 1.5rem;
    color: #2D1B36;
}

.form-success p {
    color: #555;
}

/* Footer */
.footer {
    background-color: #2D1B36;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    color: #F5F0EB;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(245, 240, 235, 0.6);
}

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

.footer-links a {
    color: rgba(245, 240, 235, 0.7);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links a:hover {
    color: #D4A574;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 235, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(245, 240, 235, 0.5);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .about-accent {
        width: 100px;
        height: 100px;
        bottom: -1rem;
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .section {
        padding: 4rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .about-image {
        height: 300px;
    }
}
