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

:root {
    --color-primary: #EE730E;
    --color-secondary: #E8504D;
    --color-dark: #1c1c1c;
    --color-light: #f5f5f0;
    --color-white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: Georgia, 'Times New Roman', serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lift: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-large {
    padding: 18px 50px;
    font-size: 16px;
}

/* Hover lift animation */
.btn-hover-lift {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(232, 80, 77, 0.3);
}

.btn-hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 80, 77, 0.4);
}

.img-hover-lift {
    transition: var(--transition-smooth);
}

.img-hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

/* Divider */
.divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-secondary);
    margin: 20px 0 30px;
    transition: var(--transition-smooth);
}

.divider-light {
    background-color: var(--color-white);
}

.divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* Section Title */
.section-title {
    font-family: var(--font-heading);
    font-size: 35px;
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1.2;
}

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

/* Top Banner */
.top-banner {
    background-color: var(--color-dark);
    padding: 10px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-banner span {
    color: var(--color-white);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    font-weight: 700;
    transition: var(--transition-smooth);
}

.logo:hover {
    color: var(--color-primary);
}

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

.nav-list a {
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

.nav-list a:hover {
    color: var(--color-primary);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    background-color: var(--color-dark);
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    color: var(--color-white);
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-author {
    font-size: 26px;
    color: var(--color-secondary);
    margin-bottom: 35px;
}

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

.hero-image img {
    max-height: 550px;
    width: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.hero-image img:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

/* Story Section */
.story {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.story-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.story-closing {
    margin-top: 30px;
}

.story-image {
    text-align: center;
    position: sticky;
    top: 100px;
}

.story-image img {
    margin: 0 auto;
    max-height: 500px;
    transition: var(--transition-smooth);
}

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

.image-caption {
    margin-top: 15px;
    font-size: 14px;
    font-style: italic;
    color: #666;
}

/* Press Section */
.press {
    padding: 100px 0;
    background-color: var(--color-dark);
}

.press .section-title {
    text-align: center;
}

.press .divider {
    margin: 20px auto 50px;
}

/* Slider Styles */
.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-track {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.slider-dot.active {
    background-color: var(--color-primary);
    transform: scale(1.2);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.testimonial-card blockquote p {
    color: var(--color-white);
    font-size: 17px;
    line-height: 1.8;
    text-align: center;
    font-style: italic;
}

.testimonial-author {
    margin-top: 30px;
    text-align: center;
}

.author-name {
    color: var(--color-primary);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.author-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 5px;
    line-height: 1.5;
}

/* Shop Section */
.shop {
    padding: 100px 0;
    background-color: var(--color-light);
}

.shop-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: center;
}

.shop-image img {
    box-shadow: var(--shadow-lift);
    border-radius: 4px;
}

.shop-author {
    font-size: 18px;
    margin-bottom: 8px;
}

.shop-details {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    letter-spacing: 0.02em;
}

.shop-description {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.shop-price {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.shop-shipping {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.shop-options {
    display: flex;
    gap: 30px;
}

.shop-option {
    flex: 1;
    text-align: center;
    padding: 25px;
    background-color: var(--color-white);
    border-radius: 8px;
    border: 2px solid #eee;
    transition: var(--transition-smooth);
}

.shop-option:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lift);
}

.option-type {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.option-price {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

/* Author Section */
.author {
    padding: 100px 0;
    background-color: var(--color-white);
}

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

.author-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lift);
}

.author-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.author-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--color-dark);
}

.contact .section-title {
    text-align: center;
    font-size: 20px;
    font-family: var(--font-body);
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-bottom: 30px;
}

.contact-email {
    display: block;
    text-align: center;
    font-size: 24px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(238, 115, 14, 0.1);
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: var(--color-dark);
    text-align: center;
}

.footer .divider {
    margin: 0 auto 25px;
}

.footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-banner span {
        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-dark);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list a {
        display: block;
        padding: 10px 0;
    }

    .hero {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-author {
        font-size: 20px;
    }

    .hero-image img {
        max-height: 400px;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
        position: static;
    }

    .slider-container {
        flex-direction: column;
    }

    .slider-arrow {
        display: none;
    }

    .slider-track {
        min-height: 450px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .shop-image {
        text-align: center;
    }

    .shop-image img {
        max-width: 280px;
        margin: 0 auto;
    }

    .shop-options {
        flex-direction: column;
        gap: 20px;
    }

    .shop-option {
        padding: 20px;
    }

    .option-price {
        font-size: 28px;
    }

    .author-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .author-image img {
        max-width: 200px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 26px;
    }

    .testimonial-card blockquote p {
        font-size: 15px;
    }
}

/* Mobile Menu Active State */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Fade in animations on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
