/* style.css */
:root {
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Base Monochrome Theme (Light/Minimal) */
    --bg-color: #ffffff;
    --bg-secondary: #f4f4f4;
    --text-primary: #121212;
    --text-secondary: #555555;
    --accent-color: #000000;
    --accent-hover: #333333;
    --border-color: #e0e0e0;
    --card-bg: #ffffff;
    --inverted-bg: #121212;
    --inverted-text: #ffffff;
    
    /* Smooth transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Soft Aesthetic Theme */
[data-theme="aesthetic"] {
    --bg-color: #FDFBF7;
    --bg-secondary: #F3EBE1;
    --text-primary: #4A4036;
    --text-secondary: #70655B;
    --accent-color: #AB7F5D;
    --accent-hover: #8B6547;
    --border-color: #E0CFC0;
    --card-bg: #ffffff;
    --inverted-bg: #121212; /* Proper black block overriding brown */
    --inverted-text: #FDFBF7;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Global color transitions to ensure smooth theme switching on all blocks */
body, section, header, footer, .about, .gallery, .pricing, .order, .order-wrapper, .order-info, .order-form-container, .whatsapp-card, .image-frame, select, input {
    transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.scrolled .section-title::after, .section-title.scrolled::after {
    width: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Layout */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Buttons */
/* Shimmer Animation */
@keyframes shimmer {
    0% { transform: skewX(-20deg) translateX(-150%); }
    100% { transform: skewX(-20deg) translateX(250%); }
}

.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--accent-color);
    color: var(--inverted-text);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-cta-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg) translateX(-150%);
    animation: shimmer 3s infinite;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--inverted-text);
}

.w-100 {
    width: 100%;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

[data-theme="aesthetic"] #navbar {
    background-color: rgba(253, 251, 247, 0.85);
    border-color: rgba(140, 122, 107, 0.15);
}

#navbar.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    top: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
}

[data-theme="aesthetic"] #navbar.scrolled {
    background-color: rgba(253, 251, 247, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 100%;
    margin: 0 auto;
    transition: var(--transition);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo span {
    font-weight: 400;
    color: var(--text-secondary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.btn-cta-nav {
    background-color: var(--accent-color);
    color: var(--inverted-text) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 600 !important;
    position: relative;
    overflow: hidden;
}

.btn-cta-nav::after {
    display: none !important;
}

.btn-cta-nav:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instagram-icon {
    font-size: 1.2rem;
}

/* Theme Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 28px;
    position: relative;
    width: 56px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #333;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    font-size: 12px;
    color: white;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 20px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 20px;
    border-radius: 50%;
    z-index: 2;
}

input:checked + .slider {
    background-color: #E2D7CC;
    color: #8C7A6B;
}

input:checked + .slider:before {
    transform: translateX(28px);
    background-color: #8C7A6B;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Unique Animated Hero Section */
.hero.unique-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0 5%;
    overflow: hidden;
    text-align: center;
}

.centered-hero {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.centered-hero h1 {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.outlined-text {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--text-primary);
    font-style: italic;
    font-family: var(--font-body);
}

.centered-hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
}

.centered-hero .hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Floating Zero-Gravity Collage Background */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    box-shadow: 0 40px 80px rgba(0,0,0,0.12);
    border: 12px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
}

.hero-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 1s ease;
}

[data-theme="aesthetic"] .hero-shape img {
    filter: sepia(30%) brightness(95%);
}

[data-theme="aesthetic"] .hero-shape {
    border-color: #FDFBF7;
    background: #FDFBF7;
}

/* Specific Positions and Cinematic Parallax Animations */
@keyframes cinematic-float-1 {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50% { transform: translateY(-35px) rotate(-3deg); }
}

@keyframes cinematic-float-2 {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-25px) rotate(12deg); }
}

@keyframes cinematic-float-3 {
    0%, 100% { transform: translateY(0) rotate(-12deg); }
    50% { transform: translateY(20px) rotate(-6deg); }
}

.shape-1 {
    width: 250px;
    height: 330px;
    top: 20%;
    left: 10%;
    animation: cinematic-float-1 8s ease-in-out infinite;
}

.shape-2 {
    width: 320px;
    height: 420px;
    top: 25%;
    right: 8%;
    animation: cinematic-float-2 10s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 260px;
    bottom: -5%;
    left: 30%;
    animation: cinematic-float-3 7s ease-in-out infinite;
}

/* About Section */
.about {
    background-color: var(--bg-secondary);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.about-text p strong {
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.image-frame {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.image-frame::after {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    background-color: var(--accent-color);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    transition: var(--transition);
}

.image-frame:hover::after {
    opacity: 0.3;
    transform: scale(1.1);
}

.profile-img-anim {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph-profile 8s ease-in-out infinite alternate;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 8px solid var(--bg-color);
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 2;
}

[data-theme="aesthetic"] .profile-img-anim {
    filter: sepia(30%) brightness(95%);
    border-color: #FDFBF7;
}

.image-frame:hover .profile-img-anim {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.05) translateY(-10px);
    border-radius: 8px; /* Snaps to a modern rounded rectangle */
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    animation-play-state: paused;
}

[data-theme="aesthetic"] .image-frame:hover .profile-img-anim {
    filter: sepia(0%) brightness(100%);
}

@keyframes morph-profile {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.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.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.gallery-overlay p {
    font-size: 0.9rem;
    font-weight: 300;
}

/* Reels Section */
.reels {
    background-color: var(--bg-color);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reel-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.reel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.reel-video {
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    background-color: var(--border-color);
}

.reel-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter 0.3s ease, transform 0.5s ease;
}

.reel-card:hover .reel-thumb {
    filter: brightness(0.6);
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reel-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--accent-color);
}

.reel-info {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.reel-info i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.2rem;
}

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

@media (max-width: 576px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .reel-video { aspect-ratio: 3/4; }
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 2px dashed var(--accent-color);
    z-index: -1;
    transform: translateZ(-30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border-color: transparent;
}

.pricing-card:hover::before {
    opacity: 0.8;
    transform: translateZ(-50px) rotate(4deg) scale(1.05);
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed var(--border-color);
    transform: translateZ(20px);
    transition: transform 0.5s ease;
}

.card-header i {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pricing-card:hover .card-header i {
    transform: translateZ(60px) scale(1.2) rotateY(180deg);
    color: var(--text-primary);
}

.card-header h3 {
    font-size: 1.3rem;
    transition: transform 0.5s ease;
}

.pricing-card:hover .card-header h3 {
    transform: translateZ(40px);
}

.price-list {
    transform: translateZ(10px);
    transition: transform 0.5s ease;
}

.pricing-card:hover .price-list {
    transform: translateZ(40px);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.price-list li strong {
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Order Section */
.order {
    background-color: var(--bg-color);
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background-color: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.order-info {
    padding: 4rem;
    background-color: var(--inverted-bg);
    color: var(--inverted-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.order-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.order-info .section-title::after {
    left: 0;
    transform: none;
    background-color: var(--inverted-text);
}

.order-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.whatsapp-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-card i {
    font-size: 3rem;
    color: #25D366;
}

.whatsapp-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.whatsapp-card p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-whatsapp {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background-color: #20BA56;
}

.order-form-container {
    padding: 4rem;
    background-color: var(--card-bg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-secondary);
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: var(--bg-color);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
}

.file-upload {
    position: relative;
    border: 2px dashed var(--border-color);
    border-radius: 4px;
    padding: 2rem;
    text-align: center;
    background-color: var(--bg-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.file-upload:hover {
    border-color: var(--accent-color);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-visual i {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.file-upload-visual span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Footer */
footer {
    background-color: var(--inverted-bg);
    color: var(--inverted-text);
    padding: 0 0 1rem 0;
    position: relative;
    overflow: hidden;
}

/* Footer Marquee */
.footer-marquee {
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    margin-bottom: 4rem;
    background-color: rgba(255,255,255,0.02);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 20s linear infinite;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding-right: 3rem;
}

.marquee-content i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Watermark */
.footer-watermark {
    text-align: center;
    pointer-events: none;
    user-select: none;
    overflow: hidden;
    margin-bottom: 1rem;
}

.footer-watermark h2 {
    font-size: 15vw;
    line-height: 0.8;
    color: rgba(255,255,255,0.03);
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.footer-brand .logo {
    color: var(--inverted-text);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .logo span {
    color: rgba(255,255,255,0.6);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h4::after,
.footer-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--inverted-text);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--inverted-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--inverted-text);
    color: var(--inverted-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* Premium Developer Credit - Unique Hollow Fill Variation */
.developer-credit-v2 {
    margin-top: 1.5rem;
    text-align: center;
}

.developer-credit-v2 p {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 5px;
    font-weight: 400;
}

[data-theme="aesthetic"] .developer-credit-v2 p {
    color: rgba(140, 122, 107, 0.7);
}

.hollow-name {
    font-size: 2.2rem;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.4);
    position: relative;
    display: inline-block;
    text-decoration: none;
    transition: all 0.5s ease;
}

[data-theme="aesthetic"] .hollow-name {
    -webkit-text-stroke: 1px rgba(140, 122, 107, 0.4);
}

.hollow-name::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    color: #fff;
    -webkit-text-stroke: 0px transparent;
    overflow: hidden;
    white-space: nowrap;
    transition: width 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-right: 2px solid transparent;
}

[data-theme="aesthetic"] .hollow-name::before {
    color: #8C7A6B;
}

.hollow-name:hover::before {
    width: 100%;
    border-right: 2px solid #fff;
}

[data-theme="aesthetic"] .hollow-name:hover::before {
    border-right-color: #8C7A6B;
}

.hollow-name:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.fade-in.scrolled {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}
.fade-in-up.scrolled {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
}
.fade-in-left.scrolled {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
}
.fade-in-right.scrolled {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h1 { font-size: 3.5rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 2rem; }
    .order-wrapper { grid-template-columns: 1fr; }
    .nav-links { gap: 1rem; }
}

@media screen and (max-width: 768px) {
    .hamburger { display: flex; z-index: 105; }
    
    .nav-container { padding: 0.8rem 1.2rem; }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        flex-direction: column;
        background-color: var(--bg-color);
        width: 90%;
        border-radius: 20px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        padding: 2rem 0;
        gap: 1.5rem;
        opacity: 0;
        pointer-events: none;
        z-index: 100;
    }

    [data-theme="aesthetic"] .nav-links {
        background-color: var(--bg-color);
        box-shadow: 0 10px 40px rgba(140, 122, 107, 0.15);
    }
    
    .nav-links.active {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    
    .hero.unique-hero {
        flex-direction: column;
        padding-top: 7rem;
        min-height: auto;
    }
    
    .centered-hero {
        margin-bottom: 3rem;
        padding: 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-shapes {
        position: relative;
        width: 100%;
        height: 35vh;
        order: 2;
        margin-top: 0;
    }

    .shape-1 { width: 120px; height: 160px; top: 10%; left: 5%; }
    .shape-2 { width: 150px; height: 200px; top: 5%; right: 5%; }
    .shape-3 { width: 100px; height: 130px; bottom: 5%; left: 35%; }
    
    .about-grid { grid-template-columns: 1fr; }
    
    .pricing-grid { grid-template-columns: 1fr; }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-contact h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .reels-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media screen and (max-width: 480px) {
    .nav-container { padding: 0.8rem 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .logo { font-size: 1.2rem; }
    
    /* Make shapes much smaller on mobile to avoid overlap & stretching */
    .shape-1 { width: 90px; height: 120px; left: 2%; }
    .shape-2 { width: 110px; height: 150px; right: 2%; }
    .shape-3 { width: 80px; height: 100px; left: 30%; bottom: 10%; }
    
    .gallery-grid { grid-template-columns: 1fr; }
    .reels-grid { grid-template-columns: 1fr; gap: 2rem; }
    .order-info { padding: 2rem 1.2rem; }
    .order-form-container { padding: 2rem 1.2rem; }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .whatsapp-card {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
    
    .section-title { font-size: 1.8rem; }
    
    .hollow-name { font-size: 1.4rem; letter-spacing: 1px; }
    
    .footer-marquee { margin-bottom: 2rem; }
    .footer-bottom { font-size: 0.8rem; padding: 1.5rem 1rem; }
}
