/* The G Spot Thrift Boutique - Modern Retro Styling */

/* Import Custom Retro Vintage Font */
@font-face {
    font-family: 'HeidanRoundedVintage';
    src: url('../fonts/HeidanRoundedVintageDemoDra-PVGaE.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Variables for Color Palette */
:root {
    /* Brand Colors */
    --cream: #F2E7D8;
    --rich-black: #000000; /* Pure black background */
    --cyan-teal: #27D8EE;
    --accent-red: #C4473A;
    --warm-gold: #E2BD7F;
    --text-white: #FFFFFF; /* White text */
    
    /* Typography */
    --font-heading: 'HeidanRoundedVintage', serif; /* Custom Heidan Rounded Vintage font */
    --font-body: 'HeidanRoundedVintage', serif; /* Custom Heidan Rounded Vintage font */
    
    /* Spacing - CRITICAL: Tight spacing to eliminate white space */
    --section-spacing: 50px; /* Max 50px between sections */
    --container-padding: 20px;
    --element-spacing: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s ease;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(11, 11, 12, 0.1);
    --shadow-medium: 0 8px 30px rgba(11, 11, 12, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--rich-black);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2.25rem, 6vw, 3rem);
    font-weight: 600;
    color: var(--cyan-teal); /* Make all h2 elements teal */
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--cyan-teal); /* Make all h3 elements teal */
}

p {
    margin-bottom: var(--element-spacing);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--warm-gold);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--cyan-teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--cyan-teal);
    transition: width var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all var(--transition-fast);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid var(--text-white);
    border-radius: 4px;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--cyan-teal);
    color: var(--rich-black);
}

.btn-primary:hover {
    background-color: var(--text-white);
    color: var(--rich-black);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-secondary:hover {
    background-color: var(--accent-red);
    color: var(--text-white);
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

/* CRITICAL SPACING: All sections use consistent tight spacing */
section {
    padding: var(--section-spacing) 0;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(39, 216, 238, 0.1) 0%, rgba(196, 71, 58, 0.1) 100%);
    padding-top: 80px; /* Account for fixed nav */
}

.hero-content {
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.hero-logo {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: clamp(80px, 15vw, 120px);
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.hero-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

/* HAND-PICKED styling - Bold capitals with teal background */
.hand-picked {
    font-weight: 900 !important;
    letter-spacing: 0.2rem;
    color: var(--rich-black) !important;
    background: var(--cyan-teal); /* Changed from warm-gold to cyan-teal */
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    border: 2px solid var(--rich-black);
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 2rem;
}

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

/* Vintage Vector Decorations */
.vintage-vector {
    position: absolute;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    z-index: 2;
    opacity: 0.8;
    transition: transform var(--transition-smooth);
}

.vintage-vector:hover {
    transform: scale(1.05) rotate(5deg);
}

.vector-hero-1 {
    top: 15%;
    right: 10%;
    width: 80px;
    height: auto;
    transform: rotate(-15deg);
}

.vector-hero-2 {
    bottom: 20%;
    left: 8%;
    width: 70px;
    height: auto;
    transform: rotate(20deg);
}

.vector-hero-3 {
    top: 25%;
    left: 12%;
    width: 60px;
    height: auto;
    transform: rotate(-25deg);
}

/* Story Section */
.story-section {
    background-color: var(--rich-black);
    position: relative;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.gigi-portrait {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.vector-story-1 {
    top: -10px;
    right: -20px;
    width: 60px;
    height: auto;
    transform: rotate(25deg);
}

.vector-story-2 {
    bottom: 10%;
    right: 5%;
    width: 90px;
    height: auto;
    transform: rotate(-15deg);
}

.section-title {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-align: center; /* Center all section titles */
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(45deg, var(--rich-black) 0%, rgba(226, 189, 127, 0.1) 100%);
    position: relative;
}

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

.philosophy-item {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--warm-gold);
    transition: transform var(--transition-smooth);
    color: var(--text-white);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.vector-philosophy-1 {
    top: 15%;
    left: 5%;
    width: 70px;
    height: auto;
    transform: rotate(-20deg);
}

.vector-philosophy-2 {
    bottom: 15%;
    right: 8%;
    width: 80px;
    height: auto;
    transform: rotate(30deg);
}

/* Gallery Section */
.gallery-section {
    background-color: var(--rich-black);
    position: relative;
}

.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-white);
}

/* Horizontal Gallery - RIGHT TO LEFT */
.gallery-marquee {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0;
    border-top: 2px solid var(--warm-gold);
    border-bottom: 2px solid var(--warm-gold);
    background: rgba(0, 0, 0, 0.3);
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: scroll-right-to-left 120s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-right-to-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 250px;
    margin-right: 1rem;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.vector-gallery-1 {
    top: 20%;
    right: 10%;
    width: 85px;
    height: auto;
    transform: rotate(45deg);
}

/* The Backstory Boutique Section */
.backstory-section {
    background: linear-gradient(135deg, var(--rich-black) 0%, rgba(232, 119, 139, 0.1) 100%);
    position: relative;
}

.backstory-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.video-item {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-smooth);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-bold);
}

.video-container {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.video-title {
    padding: 1rem;
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    border-top: 2px solid var(--warm-gold);
}

/* Mobile Responsive for Videos */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .video-container {
        max-width: 280px;
    }
    
    .video-title {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .video-container {
        max-width: 250px;
    }
    
    .backstory-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* Visit Section */
.visit-section {
    background: linear-gradient(135deg, rgba(39, 216, 238, 0.1) 0%, var(--rich-black) 100%);
    position: relative;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.info-item h3 {
    color: var(--cyan-teal);
    margin-bottom: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hour-item {
    font-weight: 500;
}

.visit-highlights {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--cyan-teal);
    color: var(--text-white);
}

.visit-highlights ul {
    list-style: none;
    padding-left: 0;
}

.visit-highlights li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(39, 216, 238, 0.2);
    position: relative;
    padding-left: 1.5rem;
}

.visit-highlights li::before {
    content: "→";
    color: var(--cyan-teal);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.vector-visit-1 {
    bottom: 15%;
    left: 5%;
    width: 75px;
    height: auto;
    transform: rotate(30deg);
}

.vector-visit-2 {
    top: 10%;
    right: 5%;
    width: 65px;
    height: auto;
    transform: rotate(-20deg);
}

/* Contact Section */
.contact-section {
    background-color: var(--rich-black);
    color: var(--cream);
    position: relative;
}

.contact-section .section-title {
    color: var(--text-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

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

.contact-item h3 {
    color: var(--cyan-teal);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

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

.policies {
    background: rgba(39, 216, 238, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--cyan-teal);
}

.policies h3 {
    color: var(--cyan-teal);
    margin-bottom: 1rem;
}

.vector-contact-1 {
    bottom: 15%;
    right: 8%;
    width: 70px;
    height: auto;
    transform: rotate(25deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        width: 250px;
        height: 200px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hide some vectors on mobile for cleaner look */
    .vector-hero-3,
    .vector-story-2,
    .vector-philosophy-1,
    .vector-visit-2 {
        display: none;
    }
    
    /* Adjust remaining vectors for mobile */
    .vintage-vector {
        width: 50px !important;
    }
}

@media (max-width: 480px) {
    :root {
        --section-spacing: 40px; /* Even tighter on mobile */
        --container-padding: 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .gallery-item {
        width: 200px;
        height: 160px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .gallery-track {
        animation: none;
    }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.nav-link:focus-visible {
    outline: 2px solid var(--cyan-teal);
    outline-offset: 2px;
}

/* ===== NEW VINTAGE STICKERS ===== */
.vintage-sticker {
    position: absolute;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    z-index: 3;
    opacity: 0.9;
    transition: transform var(--transition-smooth);
}

.vintage-sticker:hover {
    transform: scale(1.08) rotate(8deg);
    z-index: 4;
}

/* Hero Section Stickers - SAFE CORNER POSITIONS */
.sticker-gspot-sign {
    top: 2%;
    left: 0%;
    width: 280px;
    height: auto;
    transform: rotate(-8deg);
}

.sticker-dancing-couple {
    bottom: 2%;
    left: 0%;
    width: 320px;
    height: auto;
    transform: rotate(12deg);
    z-index: 2;
}

.sticker-pinup-girl {
    top: 0%;
    right: 0%;
    width: 200px;
    height: auto;
    transform: rotate(-15deg);
}

/* Philosophy Section Stickers - MOVED TO PREVENT TEXT BLOCKING */
.sticker-rare-finds {
    top: 15%; /* Moved further down to avoid blocking text */
    right: 5%; /* Moved slightly inward */
    width: 140px; /* Reduced size significantly */
    height: auto;
    transform: rotate(10deg);
}

.sticker-retro-lady {
    bottom: 15%; /* Moved further up to avoid blocking text */
    left: 5%; /* Moved slightly inward */
    width: 120px; /* Reduced size significantly */
    height: auto;
    transform: rotate(-18deg);
}

.sticker-magazine-page {
    top: 15%; /* Moved further down to be safe */
    left: 5%; /* Moved slightly inward */
    width: 110px; /* Reduced size significantly */
    height: auto;
    transform: rotate(22deg);
}

/* Gallery Section Stickers - SAFE CORNER POSITIONS */
.sticker-fashion-girl {
    bottom: 10%; /* Moved up to avoid blocking content */
    left: 5%; /* Moved slightly inward */
    width: 150px; /* Reduced size */
    height: auto;
    transform: rotate(-12deg);
}

.sticker-elegant-ladies {
    bottom: 10%; /* Moved up to avoid blocking content */
    right: 5%; /* Moved slightly inward */
    width: 140px; /* Reduced size */
    height: auto;
    transform: rotate(16deg);
}

.sticker-fashion-models {
    top: 10%; /* Moved down to avoid blocking content */
    right: 5%; /* Moved slightly inward */
    width: 120px; /* Reduced size */
    height: auto;
    transform: rotate(-20deg);
}

/* Contact Section Sticker - SAFE CORNER POSITION */
.sticker-vintage-tag {
    top: 0%;
    right: 0%;
    width: 160px;
    height: auto;
    transform: rotate(14deg);
}

/* Mobile Responsive Sticker Adjustments */
@media (max-width: 768px) {
    /* Reduce sticker sizes on mobile to maintain proportion */
    .vintage-sticker {
        width: 120px !important;
    }
    
    .sticker-gspot-sign,
    .sticker-rare-finds {
        width: 180px !important;
    }
    
    /* Keep all stickers in safe corner positions on mobile */
    .sticker-gspot-sign {
        top: 1%;
        left: 0%;
        width: 140px !important;
    }
    
    .sticker-dancing-couple {
        bottom: 1%;
        left: 0%;
        width: 160px !important;
    }
    
    .sticker-pinup-girl {
        top: 0%;
        right: 0%;
        width: 100px !important;
    }
    
    .sticker-rare-finds {
        top: 3%;
        right: 0%;
        width: 100px !important;
    }
    
    .sticker-retro-lady {
        bottom: 3%;
        left: 0%;
        width: 90px !important;
    }
    
    .sticker-magazine-page {
        top: 3%;
        left: 0%;
        width: 80px !important;
    }
    
    .sticker-fashion-girl {
        bottom: 0%;
        left: 0%;
        width: 110px !important;
    }
    
    .sticker-elegant-ladies {
        bottom: 0%;
        right: 0%;
        width: 100px !important;
    }
    
    .sticker-fashion-models {
        top: 0%;
        right: 0%;
        width: 90px !important;
    }
    
    .sticker-vintage-tag {
        top: 0%;
        right: 0%;
        width: 80px !important;
    }
    
    /* Mobile-specific improvements */
    .hero-section {
        padding-top: 100px; /* More space for mobile */
    }
    
    .nav-container {
        padding: 8px var(--container-padding);
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    /* Better touch targets on mobile */
    .btn {
        min-height: 44px;
        min-width: 44px;
        font-size: 0.9rem;
    }
    
    /* Improve text readability on mobile */
    .hero-content {
        padding: 0 24px;
    }
    
    .philosophy-item {
        padding: 1rem;
    }
    
    .visit-highlights {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    /* Further reduce on very small screens but keep them in safe corners */
    .vintage-sticker {
        width: 90px !important;
        opacity: 0.8;
    }
    
    .sticker-gspot-sign {
        width: 120px !important;
        top: 4%;
        left: 1%;
    }
    
    .sticker-dancing-couple {
        bottom: 5%;
        left: 2%;
        width: 113px !important;
    }
    
    .sticker-rare-finds {
        width: 110px !important;
        top: 1%;
        right: 1%;
    }
    
    /* Keep all other stickers in safe corner positions */
    .sticker-pinup-girl {
        top: 1%;
        right: 1%;
        width: 60px !important;
    }
    
    .sticker-retro-lady {
        bottom: 1%;
        right: 1%;
        width: 68px !important;
    }
    
    .sticker-magazine-page {
        top: 1%;
        left: 1%;
        width: 64px !important;
    }
    
    .sticker-fashion-girl {
        bottom: 1%;
        left: 1%;
        width: 72px !important;
    }
    
    .sticker-elegant-ladies {
        bottom: 1%;
        right: 1%;
        width: 64px !important;
    }
    
    .sticker-fashion-models {
        top: 1%;
        right: 1%;
        width: 56px !important;
    }
    
    .sticker-vintage-tag {
        top: 1%;
        right: 1%;
        width: 53px !important;
    }
}
