﻿
:root {
    --bg-dark: #0a0a0a;
    --bg-grey: #1a1a1a;
    --text-white: #ffffff;
    --text-grey: #a0a0a0;
    --accent: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    line-height: 1.6;
}

.our-story {
    background-color: #f8f9fa;
}
.d21323{
    color:rebeccapurple;

}
.story-image img {
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.letter-spacing {
    letter-spacing: 2px;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    max-width: 400px;
    font-size: 0.9rem;
    color: var(--text-grey);
}

.pillars {
    padding: 80px 5%;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    letter-spacing: 3px;
    color: var(--bg-dark);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .pillar-item .icon-container {
        width: 64px;
        height: 64px;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .pillar-item svg {
        width: 100%;
        height: 100%;
    }

        .pillar-item svg path {
            stroke: var(--text-white);
            stroke-width: 1,25;
        }

    .pillar-item h4 {
        color: black;
        font-size: 20px;
    }

    .pillar-item p {
        font-size: 0.85rem;
        color: var(--text-grey);
        max-width: 250px;
    }

.cta {
    text-align: center;
    background-color: #DDDBCD;
}

    .cta h2 {
        font-family: Montserrat;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

.cta-buttons button {
    padding: 1rem 2rem;
    margin: 0 10px;
    cursor: pointer;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
    background-color: #3A1D0F;
    color: white;
    border: 1px solid white;
}

img {
    width: 10rem;
}

.craftsmanship-section {
    background-color: #3A1D0F;
    padding: 1px 0;
    color: #fff;
}

.section-header h2 {
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 60px;
    font-weight: 600;
    font-family: Montserrat;
}

.craft-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 60px;
}

    .craft-row.reverse {
        flex-direction: row-reverse;
    }

.craft-image {
    flex: 1;
}

    .craft-image img {
        width: 100%;
        border-radius: 6px;
        display: block;
    }

.craft-content {
    flex: 1;
}

    .craft-content h4 {
        font-weight: 600;
        letter-spacing: 2px;
        color: #fff;
        font-family: Montserrat;
        margin-bottom: 10px;
    }

    .craft-content h3 {
        margin-bottom: 15px;
        font-family: Montserrat;
        font-size: 19px;
    }

    .craft-content p {
        color: #ccc;
        font-family: Montserrat;
        line-height: 1.7;
    }

.journey-section {
    background: linear-gradient(135deg, #712123, #3A1D0F);
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.journey-title {
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 80px;
    font-weight: 600;
}

.timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    .timeline::before {
        content: "";
        position: absolute;
        top: 38px; /* đúng tâm dot */
        left: 0;
        width: 100%;
        height: 2px;
        background: rgba(255,255,255,0.3);
        z-index: 1;
    }

.timeline-item {
    position: relative;
    width: 16%;
    z-index: 2;
    text-align: center;
}
.icon-logo img{
    width: 37px;
}
/* Icon */
.timeline-item .icon {
    font-size: 22px;
    margin-bottom: -1px;
}

    /* Dot vàng nằm đè lên line */
    .timeline-item .dot {
        width: 12px;
        height: 12px;
        background-color: #d4af37;
        border-radius: 50%;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .timeline-item p {
        margin-top: 20px;
        font-size: 12px;
        letter-spacing: 1px;
        line-height: 1.6;
        color: #e0e0e0;
    }




@media (max-width: 992px) {
    .craft-row,
    .craft-row.reverse {
        flex-direction: column;
    }

    .craft-row {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .story-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .story-image img {
        width: 100%;
        height: auto;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}
