/* Reset and General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background: #1F2525;
    position: relative;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --dark-grey: #1F2525;
    --light-blue: #ADD8E6;
    --light-yellow: #FFFFE0;
    --light-orange: #FFCC99;
    --mauve: #C89FBC;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(to bottom, #1F2525, #2A3030);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    animation: slideIn 1s ease-out;
}

.logo {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: var(--light-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: var(--mauve);
    transform: translateY(-2px);
}

.nav-links a.active {
    border-bottom: 3px solid var(--light-yellow);
}

.hamburger {
    display: none;
    font-size: 30px;
    color: var(--light-orange);
    cursor: pointer;
    z-index: 11;
}

#menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://cdn.glitch.global/5893008a-9840-4d81-a6ea-0e42505b5644/WhatsApp%20Image%202025-02-13%20at%2012.29.57_02a7ed89.jpg?v=1743168424915') center/cover no-repeat fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(31, 37, 37, 0.7), rgba(31, 37, 37, 0.5));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: var(--light-yellow);
    font-weight: 700;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
}

.hero p {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn {
    padding: 14px 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    color: var(--dark-grey);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.explore {
    background: var(--light-orange);
    border: 2px solid var(--light-orange);
}

.explore:hover {
    background: var(--mauve);
    border-color: var(--mauve);
    transform: translateY(-3px);
}

.shop {
    border: 2px solid var(--light-blue);
}

.shop:hover {
    background: var(--light-yellow);
    border-color: var(--light-yellow);
    transform: translateY(-3px);
}

/* Image Container */
.image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--light-orange);
    border-radius: 8px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-container:hover img {
    transform: scale(1.03);
}

.image-container .embossing {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: var(--light-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(31, 37, 37, 0.7);
    padding: 5px 12px;
    border-radius: 6px;
    z-index: 3;
    transition: transform 0.3s ease;
}

.image-container:hover .embossing {
    transform: scale(1.05);
}

.image-container a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    text-decoration: none;
}

/* Lauren Moll Text in Footer */
.lauren-moll {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: var(--light-orange);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    display: inline-block;
}

.lauren-moll:hover {
    transform: scale(1.05);
}

/* Slideshow Section */
.slideshow {
    padding: 60px 20px;
    text-align: center;
    position: relative;
    background: var(--dark-grey);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.slideshow h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--light-yellow);
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slides {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

.slide .image-container {
    height: 400px;
}

.slide p {
    font-size: 22px;
    color: var(--light-blue);
    font-weight: 500;
    margin-top: 15px;
    font-style: italic;
}

.slide:first-child {
    display: block;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light-orange);
    color: var(--dark-grey);
    border: none;
    padding: 12px 18px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: var(--mauve);
    transform: scale(1.1);
}

/* Cross-Link Banner */
.cross-link {
    background: linear-gradient(to right, #2A3030, #1F2525);
    padding: 30px;
    text-align: center;
}

.cross-link p {
    color: var(--light-blue);
    font-size: 22px;
    font-weight: 500;
}

.cross-link a {
    color: var(--light-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cross-link a:hover {
    color: var(--mauve);
    text-decoration: underline;
}

/* Gallery Section (My Art, Photos, Drawings, Shop Pages) */
.gallery {
    padding: 60px 20px;
    text-align: center;
    background: var(--dark-grey);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.gallery h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--light-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.gallery p {
    font-size: 28px;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.art-item {
    background: var(--dark-grey);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--light-blue);
}

.art-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-color: var(--mauve);
}

.art-item .image-container {
    height: 250px;
}

.art-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--light-yellow);
    margin: 15px 0;
}

.art-item p {
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.art-item .btn {
    display: inline-block;
    font-size: 18px;
    padding: 10px 20px;
    border-radius: 50px;
}

/* About Section */
.about {
    padding: 60px 20px;
    text-align: center;
    background: var(--dark-grey);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.about h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--light-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text p {
    font-size: 20px;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-text a {
    color: var(--light-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: var(--mauve);
    text-decoration: underline;
}

.about-image .image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--light-orange);
    border-radius: 8px;
    transition: transform 0.3s ease;
    z-index: 1;
}

.about-image .image-container:hover img {
    transform: scale(1.03);
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    text-align: center;
    background: var(--dark-grey);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.contact h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--light-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.contact p {
    font-size: 28px;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 500px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-size: 20px;
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid var(--light-orange);
    border-radius: 8px;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    background: #2A3030;
    color: var(--light-blue);
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--mauve);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    display: block;
    width: 100%;
    font-size: 22px;
    padding: 14px;
    background: var(--light-orange);
    border: 2px solid var(--light-orange);
    color: var(--dark-grey);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--mauve);
    border-color: var(--mauve);
}

.contact-details {
    max-width: 400px;
    text-align: left;
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--light-yellow);
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 20px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.contact-details a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--mauve);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--light-orange);
    color: var(--dark-grey);
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.social-btn:hover {
    background: var(--mauve);
    transform: translateY(-3px);
}

/* Shop Section */
.shop {
    padding: 60px 20px;
    text-align: center;
    background: var(--dark-grey);
    position: relative;
}

.shop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.shop h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: var(--light-yellow);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.shop p {
    font-size: 28px;
    color: var(--light-blue);
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.shop-item {
    background: var(--dark-grey);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid var(--light-blue);
    position: relative;
    z-index: 1;
}

.shop-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    border-color: var(--mauve);
}

.shop-item .image-container {
    height: 250px;
}

.shop-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: var(--light-yellow);
    margin: 15px 0;
}

.shop-item p {
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.shop-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--mauve);
    margin-bottom: 20px;
}

.shop-item .btn {
    display: inline-block;
    font-size: 18px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 50px;
}

.shop-item.sold .btn {
    background: #666;
    border-color: #666;
    color: var(--light-blue);
    cursor: not-allowed;
}

.shop-item .add-to-cart {
    background: var(--light-blue);
    border: 2px solid var(--light-blue);
    margin-top: 10px;
}

.shop-item .add-to-cart:hover {
    background: var(--light-yellow);
    border-color: var(--light-yellow);
}

.shipping-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 1;
}

.shipping-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--light-yellow);
    margin-bottom: 20px;
}

.shipping-info p {
    font-size: 18px;
    color: var(--light-blue);
}

/* Cart Section */
.cart {
    padding: 40px 20px;
    background: var(--dark-grey);
    position: relative;
}

.cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/canvas.png') repeat;
    opacity: 0.1;
    z-index: -1;
}

.cart h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--light-yellow);
    text-align: center;
    margin-bottom: 20px;
}

.cart-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    color: var(--light-blue);
}

.cart-table th, .cart-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--light-orange);
}

.cart-table th {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}

.cart-table td {
    font-size: 18px;
}

.cart-table .remove {
    background: #666;
    border: none;
    padding: 5px 10px;
    color: var(--light-blue);
    cursor: pointer;
    border-radius: 5px;
}

.cart-table .remove:hover {
    background: var(--mauve);
}

.cart-total {
    text-align: right;
    max-width: 800px;
    margin: 20px auto;
    font-size: 22px;
    color: var(--light-yellow);
}

.cart-checkout {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cart-checkout form {
    margin-bottom: 20px;
}

.cart-checkout label {
    display: block;
    font-size: 18px;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.cart-checkout input, .cart-checkout select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid var(--light-orange);
    border-radius: 8px;
    font-size: 16px;
    background: #2A3030;
    color: var(--light-blue);
}

.cart-checkout select {
    appearance: none;
    background: #2A3030 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23ADD8E6" d="M0 0h12L6 6z"/></svg>') no-repeat right 10px center;
}

.cart-checkout input:focus, .cart-checkout select:focus {
    border-color: var(--mauve);
    outline: none;
}

#paypal-button-container {
    margin-top: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(to top, #1F2525, #2A3030);
    padding: 40px 20px;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p,
.footer-content a {
    color: var(--light-blue);
    font-size: 18px;
    font-weight: 500;
}

.footer-content .socials {
    display: flex;
    gap: 20px;
}

.socials a {
    color: var(--light-orange);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socials a:hover {
    color: var(--mauve);
    transform: translateY(-3px);
}

.footer-content .attribution {
    text-align: center;
    font-size: 16px;
    color: var(--light-blue);
    line-height: 1.8;
}

.footer-content .attribution a {
    color: var(--light-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content .attribution a:hover {
    color: var(--mauve);
    text-decoration: underline;
}

.footer-content .attribution span {
    font-family: 'Great Vibes', cursive;
    font-size: 20px;
    color: var(--light-yellow);
}

/* Animations */
@keyframes slideIn {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 15px 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #2A3030;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        z-index: 10;
    }

    #menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    .nav-links a {
        font-size: 20px;
        padding: 10px 0;
    }

    .hero h1, .gallery h1, .about h1, .contact h1, .shop h1 {
        font-size: 48px;
    }

    .hero p, .gallery p, .contact p, .shop p {
        font-size: 22px;
    }

    .btn {
        font-size: 18px;
        padding: 10px 20px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .slideshow h2 {
        font-size: 36px;
    }

    .slide p {
        font-size: 18px;
    }

    .slide .image-container {
        height: 300px;
    }

    .prev, .next {
        font-size: 24px;
        padding: 8px 12px;
    }

    .cross-link p {
        font-size: 18px;
    }

    .art-item h3, .shop-item h3 {
        font-size: 22px;
    }

    .art-item p, .shop-item p {
        font-size: 16px;
    }

    .art-item .image-container, .shop-item .image-container {
        height: 200px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .about-text p {
        font-size: 18px;
    }

    .about-image .image-container {
        max-width: 300px;
        height: 400px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form, .contact-details {
        text-align: center;
    }

    .contact-details h3, .shipping-info h3 {
        font-size: 24px;
    }

    .contact-details p, .shipping-info p {
        font-size: 18px;
    }

    .social-links {
        justify-content: center;
    }

    .shop-item .price {
        font-size: 18px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-content p,
    .footer-content a,
    .socials a {
        font-size: 16px;
    }

    .footer-content .attribution {
        font-size: 14px;
    }

    .image-container .embossing {
        font-size: 36px;
        bottom: 10px;
        right: 10px;
        padding: 3px 8px;
    }

    .lauren-moll {
        font-size: 36px;
    }

    .cart-table {
        font-size: 16px;
    }

    .cart-table th, .cart-table td {
        padding: 8px;
    }
}