/* ===================================
   FAST BUNNY™ - Luxury Fashion House
   The House of Bellucio
   =================================== */

/* ============= CSS RESET & BASE ============= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Luxury Neutrals */
    --deep-green: #2C4034;
    --forest-green: #3A5244;
    --cream: #F5F1E8;
    --beige: #E8DCC8;
    --warm-beige: #D4C4AD;
    --black: #1A1A1A;
    --soft-black: #2D2D2D;
    --gold: #B8956A;
    --white: #FFFFFF;
    --light-gray: #F8F6F3;
    
    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1400px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

/* ============= NAVIGATION ============= */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 64, 52, 0.1);
    transition: var(--transition);
}

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

.logo a {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--deep-green);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

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

.header-logo-img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--soft-black);
    letter-spacing: 0.5px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--deep-green);
    transition: var(--transition);
}

/* ============= HERO SECTION ============= */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 60px 60px;
    max-width: var(--container-width);
    margin: 0 auto;
    gap: 20px;
}

.hero-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-right: 15px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}





.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.brand-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 5.5rem;
    font-weight: 600;
    color: var(--deep-green);
    line-height: 1.1;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.tagline {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
}

.hero-statement {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--soft-black);
    line-height: 1.8;
    margin: 0;
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 5px;
}

.hero-image img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

/* ============= SECTION STRUCTURE ============= */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--section-padding) 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 500;
    color: var(--deep-green);
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.title-line {
    width: 80px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto 30px;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--soft-black);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============= BRAND STORY SECTION ============= */
.story-section {
    background-color: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-left-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: -130px;
}

.story-text p {
    font-size: 1.05rem;
    color: var(--soft-black);
    line-height: 1.9;
    margin-bottom: 30px;
}

.story-intro {
    font-size: 1.25rem !important;
    font-weight: 400;
    color: var(--deep-green);
    line-height: 1.8 !important;
    border-left: 3px solid var(--gold);
    padding-left: 25px;
}

.story-signature {
    font-style: italic;
    font-weight: 400;
    color: var(--forest-green);
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-signature-wrapper {
    margin: 0;
    padding: 0;
}

.story-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.story-image-single {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.story-img {
    position: relative;
    overflow: visible;
    border-radius: 2px;
}

.story-image-single .story-img {
    height: 480px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-img img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

/* ============= PHILOSOPHY SECTION ============= */
.philosophy-section {
    background-color: var(--light-gray);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.philosophy-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 2px;
    transition: var(--transition);
}

.philosophy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 64, 52, 0.08);
}

.philosophy-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.philosophy-card p {
    font-size: 1rem;
    color: var(--soft-black);
    line-height: 1.8;
}

.philosophy-image-row {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    align-items: flex-start;
}

.phil-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.phil-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gold);
    margin-top: 15px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* ============= COLLECTIONS SECTION ============= */
.collections-section {
    background-color: var(--white);
}

.collections-intro {
    margin-bottom: 60px;
}

.collections-intro h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--deep-green);
    text-align: center;
    letter-spacing: 1.5px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.collection-card {
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(44, 64, 52, 0.08);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 64, 52, 0.12);
}

.collection-image {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.collection-info {
    padding: 35px 30px;
}

.collection-info h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.collection-info p {
    font-size: 0.95rem;
    color: var(--soft-black);
    line-height: 1.7;
}

.future-collections {
    background-color: var(--beige);
    padding: 80px 60px;
    border-radius: 2px;
}

.future-collections h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 1.5px;
}

.future-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.future-item {
    display: flex;
    gap: 25px;
    align-items: start;
}

.future-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 5px;
}

.future-item h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.future-item p {
    font-size: 0.95rem;
    color: var(--soft-black);
    line-height: 1.7;
}

/* ============= CHARACTER SECTION ============= */
.character-section {
    background-color: var(--light-gray);
}

.character-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.character-text p {
    font-size: 1.05rem;
    color: var(--soft-black);
    line-height: 1.9;
    margin-bottom: 25px;
}

.character-attributes {
    margin-top: 30px;
    padding-left: 20px;
}

.character-attributes li {
    font-size: 1rem;
    color: var(--deep-green);
    line-height: 2.2;
    position: relative;
    padding-left: 30px;
}

.character-attributes li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.character-gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.char-img {
    position: relative;
    overflow: visible;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 4px 15px rgba(44, 64, 52, 0.08);
    transition: var(--transition);
    height: 100%;
}

.char-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(44, 64, 52, 0.12);
}

.char-img img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    transition: var(--transition);
    flex-shrink: 0;
}

.char-img .image-caption {
    margin-top: auto;
    padding-top: 15px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

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

/* ============= QUALITY SECTION ============= */
.quality-section {
    background-color: var(--white);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}

.quality-card {
    padding: 45px 40px;
    background-color: var(--light-gray);
    border-radius: 2px;
    border-left: 3px solid var(--gold);
}

.quality-card h3 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.quality-card p {
    font-size: 1rem;
    color: var(--soft-black);
    line-height: 1.8;
}

.quality-img-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.qual-img {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: 500px;
}

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

/* ============= ROADMAP SECTION ============= */
.roadmap-section {
    background-color: var(--beige);
    padding: var(--section-padding) 0;
}

.roadmap-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.roadmap-item {
    background-color: var(--white);
    padding: 45px 35px;
    border-radius: 2px;
    border-top: 4px solid var(--gold);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.roadmap-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 64, 52, 0.12);
}

.roadmap-season h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--deep-green);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.roadmap-season p {
    font-size: 0.98rem;
    color: var(--soft-black);
    line-height: 1.8;
}

/* ============= CONTACT SECTION ============= */
.contact-section {
    background-color: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text p {
    font-size: 1.05rem;
    color: var(--soft-black);
    line-height: 1.9;
    margin-bottom: 25px;
}

.contact-intro {
    font-size: 1.2rem !important;
    font-weight: 400;
    color: var(--deep-green);
}

.contact-list {
    margin: 30px 0;
    padding-left: 20px;
}

.contact-list li {
    font-size: 1rem;
    color: var(--soft-black);
    line-height: 2.2;
    position: relative;
    padding-left: 30px;
}

.contact-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.contact-info {
    margin-top: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 2px;
    border-top: 3px solid var(--gold);
}

.contact-email {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
}

.contact-email a {
    color: var(--deep-green);
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
}

.contact-email a:hover {
    color: var(--gold);
}

.contact-note {
    font-size: 0.95rem !important;
    font-style: italic;
    color: var(--forest-green);
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============= FOOTER ============= */
.main-footer {
    background-color: var(--deep-green);
    color: var(--cream);
    padding: 80px 60px 40px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 100px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.footer-subtitle {
    font-size: 1rem;
    color: var(--beige);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: var(--beige);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 220, 200, 0.2);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--beige);
}

/* ============= RESPONSIVE DESIGN ============= */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-container {
        padding: var(--section-padding) 40px;
    }
    
    .hero-section {
        padding: 100px 40px 60px;
        gap: 20px;
    }
    
    .hero-two-columns {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .brand-title {
        font-size: 4rem;
    }
    
    .hero-image {
        height: 450px;
        padding: 30px;
    }
    
    .story-content,
    .character-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-left-column {
        gap: 30px;
        margin-top: 0;
    }
    }
    
    .philosophy-grid,
    .collection-grid,
    .quality-grid,
    .future-list {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .character-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .section-container {
        padding: var(--section-padding) 25px;
    }
    
    .nav-container {
        padding: 20px 25px;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--cream);
        flex-direction: column;
        justify-content: start;
        padding: 40px 25px;
        gap: 30px;
        transition: var(--transition);
        border-top: 1px solid rgba(44, 64, 52, 0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
        box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 12px 0;
        border-bottom: 1px solid rgba(44, 64, 52, 0.1);
    }
    
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero-section {
        padding: 90px 25px 40px;
        min-height: auto;
        gap: 15px;
    }
    
    .hero-two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
        gap: 15px;
    }
    

    
    .brand-title {
        font-size: 2.8rem;
    }
    
    .brand-logo {
        max-width: 400px;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
        white-space: normal;
    }
    
    .hero-statement {
        font-size: 1rem;
    }
    
    .hero-image {
        height: 350px;
        padding: 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .philosophy-image-row {
        gap: 15px;
    }
    
    .phil-img img {
        height: 250px;
    }
    
    .image-caption {
        font-size: 0.75rem;
        margin-top: 10px;
    }
    
    .quality-img-row {
        grid-template-columns: 1fr;
    }
    
    .character-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 60px 25px 30px;
    }
    
    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .roadmap-item {
        padding: 40px 30px;
    }
    
    .future-collections {
        padding: 60px 30px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .brand-title {
        font-size: 2.2rem;
    }
    
    .brand-logo {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo a {
        font-size: 1.4rem;
    }
    
    .header-logo-img {
        height: 35px;
    }
}