/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFD700; /* Gold/Yellow accent */
    --secondary-color: #DC143C; /* Red accent */
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-light: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -12px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('Evora4.jpg') center/cover no-repeat;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(10, 10, 10, 0.9));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--primary-color);
    color: var(--bg-darker);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--text-primary);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--text-primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ==================== SECTION TITLES ==================== */
.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

/* Carousel controls - hidden by default (desktop) */
.carousel-controls {
    display: none;
}

.carousel-dots {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background-color: var(--bg-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 215, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.view-icon {
    width: 60px;
    height: 60px;
    color: var(--bg-darker);
    position: relative;
}

.view-icon::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 4px solid var(--bg-darker);
    border-radius: 50%;
    top: 5px;
    left: 5px;
}

.view-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 20px;
    background-color: var(--bg-darker);
    transform: rotate(45deg);
    bottom: 8px;
    right: 8px;
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 3rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-nav button:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--bg-dark);
    border: 2px solid var(--primary-color);
    padding: 3rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.price {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0;
}

.price-note {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-action form {
    margin-bottom: 1rem;
}

.booking-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ==================== PRINTS SECTION ==================== */
.prints {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

.print-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.print-mockup {
    width: 100%;
}

.print-mockup img {
    width: 100%;
    height: auto;
    border: 3px solid var(--bg-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.print-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.print-info h3 {
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.print-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.print-features {
    list-style: none;
    padding: 0;
}

.print-features li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.print-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.print-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.print-price-large {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.print-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 6rem 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
}

/* Honeypot field - hidden from humans, visible to bots */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-dark);
    border: 2px solid transparent;
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.form-message.error {
    display: block;
    background-color: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border: 1px solid #ff0000;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    width: 100%;
}

.contact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-item a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-darker);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 3rem 0 2rem;
    text-align: center;
    background-color: var(--bg-darker);
    color: var(--text-secondary);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright-notice {
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 3px solid var(--primary-color);
}

.copyright-notice h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.copyright-notice p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    /* Center all text on mobile */
    body {
        text-align: center;
    }

    .about-content p,
    .print-description,
    .pricing-features li,
    .contact-form,
    .contact-info,
    .copyright-notice p {
        text-align: center;
    }

    .pricing-features ul {
        text-align: center;
        list-style-position: inside;
    }

    .print-price-section {
        justify-content: center;
    }

    .print-features {
        text-align: center;
        list-style-position: inside;
    }

    .form-group input,
    .form-group textarea {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .navbar {
        padding: 1.2rem 0;
    }

    .nav-container {
        justify-content: center;
        padding: 0 20px;
        min-height: 50px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero {
        background-position: 70% center;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        display: block;
        position: relative;
        overflow: hidden;
    }

    .gallery-item {
        display: none;
        width: 100%;
    }

    .gallery-item.active-slide {
        display: block;
    }

    .carousel-controls {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }

    .carousel-btn {
        background-color: var(--primary-color);
        color: var(--bg-darker);
        border: none;
        padding: 0.8rem 1.5rem;
        font-size: 1.2rem;
        cursor: pointer;
        transition: var(--transition);
    }

    .carousel-btn:hover {
        background-color: var(--text-primary);
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: var(--text-secondary);
        cursor: pointer;
        transition: var(--transition);
    }

    .carousel-dot.active {
        background-color: var(--primary-color);
        width: 12px;
        height: 12px;
    }

    .contact-content {
        gap: 3rem;
    }

    .contact-form-container {
        max-width: 100%;
    }

    .print-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .lightbox-close {
        right: 20px;
    }

    .lightbox-nav button {
        font-size: 2rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .print-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
