/* 
    Premium Artist Portfolio Styles
    Aesthetics: Minimalism, Luxe, Artistic, Modern
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg-color: #FEE8DE; /* Premium High Pinkish Peach */
    --text-primary: #1A1A1A; /* Darker for more boldness */
    --text-secondary: #5F5F5F;
    --accent-color: #B8953D;
    --accent-vibrant: #D4AF37;
    --accent-hover: #8C6D2E;
    --glass-bg: rgba(255, 255, 255, 0.95); /* More solid */
    --glass-border: rgba(184, 149, 61, 0.3);
    --card-shadow: 0 30px 90px rgba(0, 0, 0, 0.08); /* Sophisticated deep shadow */
    --transition-smooth: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    --placeholder-gradient: linear-gradient(135deg, #f7f2e8 0%, #ede3d0 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

nav.scrolled {
    padding: 1.2rem 5%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-smooth);
}

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

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 6px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--text-primary);
    transform: translateY(-2px);
}

.nav-amazon-btn {
    border: 1px solid var(--accent-color);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-amazon-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 149, 61, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 5% 60px; /* offset for fixed nav */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FEE8DE;
}

/* gradientSlide animation removed as it's no longer needed */

.hero-container {
    display: flex;
    align-items: flex-end; /* Bottom aligned as requested */
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 10;
    gap: 40px;
    padding-bottom: 40px;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* The Blurred Backdrop - This layer zooms */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(20px) brightness(0.9);
    z-index: -1;
    transform: scale(1);
    transition: transform 10s linear;
}

/* The Main Image - This layer stays 100% visible */
.hero-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide.active::before {
    transform: scale(1.3); /* Only zoom the background backdrop */
}

.hero-logo-main {
    flex: 0.7;
    animation: fadeInUp 1.5s ease-out forwards;
    z-index: 2; /* Ensure logo is above carousel if they overlap */
}

.hero-logo-main img {
    width: 100%;
    max-width: 400px; /* Make it BIG */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
    transition: var(--transition-smooth);
}

.hero-logo-main:hover img {
    transform: scale(1.02) translateY(-10px);
}

.hero-content {
    flex: 1.2;
    text-align: left;
    padding-bottom: 20px;
}

.hero h1 span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}

.hero-brand-title {
    font-size: 1.8rem; /* Made larger for impact */
    font-weight: 800; /* Extra bold as requested */
    text-transform: capitalize; /* 1st letter uppercase */
    letter-spacing: 6px; /* Slightly tighter for boldness */
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color); /* Premium gold accent */
    animation: fadeInUp 1.2s ease-out 0.1s forwards;
    opacity: 0;
}

.hero-subtext {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 2.5rem; /* Increased for better visual balance after heading removal */
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
    opacity: 0;
}

.cta-link-secondary {
    font-size: 0.9rem;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid var(--text-primary);
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.cta-link-secondary:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.hero-visual {
    flex: 0.9;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1.5s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-image-frame {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08), 0 10px 20px rgba(184, 149, 61, 0.1);
    transition: transform 0.8s ease;
}

.hero-image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1), 0 15px 30px rgba(184, 149, 61, 0.15);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-button {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-vibrant));
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    animation: fadeInUp 1.5s ease-out 0.6s forwards;
    opacity: 0;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 30px rgba(184, 149, 61, 0.3);
    background: linear-gradient(135deg, var(--accent-hover), var(--accent-color));
}

/* Gallery Section */
.section {
    padding: 120px 8%;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 4rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -1px;
    font-weight: 400; /* Smooth, less aggressive weight */
}

.section-title span {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    font-style: italic; /* Adds elegance */
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--text-primary);
    opacity: 0.3;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 4rem;
}

.artwork-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.artwork-frame {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 8px; /* Sharp but refined */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft natural shadow */
    transition: var(--transition-smooth);
}

.artwork-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.artwork-card:hover .artwork-frame {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(184, 149, 61, 0.2); /* Gold Aura */
}

.artwork-card:hover .artwork-frame img {
    transform: scale(1.05);
}

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

/* Categorized Grid & Card Sliders */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(184, 149, 61, 0.15);
}

.card-inner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.card-slide.active {
    opacity: 1;
}

.card-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    z-index: 5;
    transition: var(--transition-smooth);
}

.card-title {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
}

.card-hint {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-vibrant);
    opacity: 0;
    transform: translateY(10px);
    display: block;
    transition: var(--transition-smooth);
}

.category-card:hover .card-hint {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

/* Amazon Shopping Banner Revitalization */
.amazon-banner {
    background: linear-gradient(135deg, #fff, #FEE8DE);
    padding: 120px 8%;
    position: relative;
    overflow: hidden;
}

.amazon-badge {
    position: absolute;
    top: 40px;
    right: 8%;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.8);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 5;
}

.amazon-badge img {
    height: 18px;
    width: auto;
}

.amazon-badge span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 700;
}

.amazon-banner-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.amazon-banner-text {
    flex: 1.2;
}

.amazon-banner-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.amazon-banner-text h2 span {
    color: var(--accent-color);
    font-style: italic;
}

.amazon-banner-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.amazon-banner-image {
    flex: 1;
    position: relative;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.art-collage {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateX(30px);
}

.collage-item {
    position: absolute;
    width: 200px;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 6px solid #fff;
    transition: var(--transition-smooth);
    animation: floatCollage 6s ease-in-out infinite;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-1 {
    top: 5%;
    left: 5%;
    z-index: 1;
    --rot: -10deg;
    animation-delay: 0s;
}

.item-2 {
    top: 20%;
    left: 30%;
    width: 260px;
    z-index: 3;
    --rot: 5deg;
    animation-delay: 1.5s;
}

.item-3 {
    top: 45%;
    left: 55%;
    z-index: 2;
    --rot: 12deg;
    animation-delay: 3s;
}

@keyframes floatCollage {
    0%, 100% { transform: translateY(0) rotate(var(--rot)); }
    50% { transform: translateY(-30px) rotate(var(--rot)); }
}

@media (max-width: 992px) {
    .amazon-banner-content { flex-direction: column; text-align: center; gap: 40px; }
    .amazon-banner-image { height: 400px; width: 100%; margin-top: 20px; }
    .art-collage { transform: none; display: flex; justify-content: center; align-items: center; }
    .collage-item { position: relative; left: unset; top: unset; margin: -30px; transform: scale(0.8); }
    .item-2 { width: 200px; z-index: 5; }
    @keyframes floatCollage { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
}

/* Editorial About Section */
.editorial-about {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 100px 5%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
}

.editorial-image {
    flex: 1;
    min-height: 600px;
}

.editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-content {
    flex: 1;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-label {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}

.editorial-heading {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.editorial-heading span {
    font-style: italic;
    color: var(--accent-color);
}

.editorial-quote {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 30px;
    border-left: 3px solid var(--accent-color);
    padding-left: 20px;
    line-height: 1.4;
}

.editorial-body {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: justify;
}

/* Bespoke Service Sections */
.service-feature {
    display: flex;
    align-items: center;
    gap: 100px;
    margin-bottom: 180px;
    position: relative;
}

.service-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1.2;
    height: 700px;
    border-radius: 4px; /* Sharp corners for premium look */
    overflow: hidden;
    position: relative;
    box-shadow: var(--card-shadow);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    flex: 1;
    padding-right: 50px;
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.service-content h3 {
    font-size: 4rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.service-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px;
}

.cta-bold {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.cta-bold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.cta-bold:hover::after {
    width: 100%;
}

.workshop-grid, .experience-card, .workshop-intro {
    display: none; /* Removing previous generic elements */
}

@media (max-width: 1200px) {
    .hero h1 { font-size: 6rem; }
    .section-title { font-size: 4rem; }
    .service-feature { flex-direction: column !important; gap: 50px; }
    .service-image { height: 400px; width: 100%; }
}

@media (max-width: 968px) {
    .editorial-about {
        flex-direction: column;
        margin: 50px 5%;
    }
    .editorial-image {
        min-height: 400px;
    }
    .editorial-content {
        padding: 50px 30px;
    }
    .editorial-heading {
        font-size: 3.5rem;
    }
}

footer {
    padding: 100px 5% 60px; 
    text-align: center; 
    border-top: 1px solid var(--glass-border);
    background: #FEE8DE;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.03);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-heading {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-heading span {
    color: var(--accent-color);
    font-style: italic;
}

.contact-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-item a, .contact-item p {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.contact-item a:hover {
    color: var(--accent-hover);
}

.get-directions-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: var(--transition-smooth);
    width: fit-content;
}

.get-directions-link span {
    border-bottom: 1px solid var(--accent-color);
    padding-bottom: 2px;
}

.get-directions-link:hover {
    color: var(--accent-color);
}

.get-directions-link:hover svg {
    transform: translate(3px, -3px);
}

.get-directions-link .link-logo {
    height: 35px;
    width: auto;
    margin-left: 5px;
    border-radius: 8px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.get-directions-link:hover .link-logo {
    transform: scale(1.1) rotate(5deg);
}

.contact-form-container {
    flex: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

input, textarea, select {
    width: 100%;
    padding: 1.2rem;
    background: #fdfdfb;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(184, 149, 61, 0.1);
    background: #fff;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23B8953D%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem top 50%;
    background-size: 0.65rem auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 968px) {
    /* Navbar Mobile Handling */
    nav {
        flex-direction: column;
        padding: 1rem 5% !important;
        gap: 10px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
    }
    .logo img {
        height: 40px;
    }
    .logo-text {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    nav .nav-links { 
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }
    nav .nav-links a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .nav-amazon-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    /* Hero Section */
    .hero {
        padding: 220px 5% 40px; /* Increased offset for stacked mobile nav */
        min-height: auto; /* Allow content to dictate height on mobile */
    }
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding-bottom: 0px;
    }
    .hero-logo-main {
        flex: unset;
        width: 100%;
        display: flex;
        justify-content: center;
        max-width: 180px; /* Smaller logo for mobile */
        margin-bottom: 10px;
    }
    .hero-logo-main img {
        max-width: 100%;
        filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    }
    .hero-content {
        flex: unset;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
    }
    .hero-brand-title {
        letter-spacing: 3px;
        font-size: 1.4rem;
        border-left: none;
        padding-left: 0;
        margin-bottom: 0.8rem;
    }
    .hero-subtext {
        margin-bottom: 1rem;
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
    .hero-desc { 
        font-size: 0.95rem; 
        margin-bottom: 20px; 
        line-height: 1.6;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-visual {
        flex: unset;
        width: 100%;
        margin-top: 30px;
        display: flex;
        justify-content: center;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }
    .hero-image-frame {
        width: 85%;
        max-width: 320px;
        aspect-ratio: 3/4;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        background: #fff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* General Layout */
    .section { padding: 60px 5%; }
    .section-title { font-size: 2.5rem; margin-bottom: 3rem; }

    /* About Section */
    .editorial-about {
        flex-direction: column;
        margin: 50px 5%;
    }
    .editorial-image {
        min-height: 350px;
    }
    .editorial-content {
        padding: 40px 25px;
    }
    .editorial-heading { font-size: 3rem; }
    
    /* Amazon Banner */
    .amazon-banner { padding: 60px 5%; }
    .amazon-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .amazon-banner-text h2 { font-size: 2.5rem; }
    .amazon-banner-image { height: 350px; width: 100%; margin-top: 20px; }
    .art-collage {
        transform: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .collage-item { position: relative; left: unset; top: unset; margin: -20px; transform: scale(0.7); }
    .item-2 { width: 180px; z-index: 5; }
    
    /* Contact Section */
    .contact-wrapper {
        flex-direction: column;
        padding: 40px 25px;
        gap: 40px;
    }
    .contact-heading { font-size: 2.5rem; }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128c7e;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
