* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5efe0;
    color: #333;
}

.hero {
    position: relative;
    height: 500px;
    background: url('https://www.craveculinaire.com/wp-content/uploads/AdobeStock_184633116.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.50);
}


header {
    position: absolute;
    top: 0; left: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 30px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 50px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: Arial, sans-serif;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #e3b21e;
}

.logo img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.hero-text {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    0%   { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-text .subtitle {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    color: #e3b21e;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.5);
}


.page-body {
    background-color: #f5efe0;
    padding: 80px 60px 100px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2a1a0e;
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    font-size: 14px;
    color: #888;
    text-align: center;
    margin-bottom: 40px;
}

/* TESTIMONIAL SECTION */
:root {
    --primary-color: #6B7A52;
    --secondary-color: #ffffff;
    --text-dark: #2a1a0e;
    --text-light: #555;
    --white: #fff;
}

.testi-section {
    margin-bottom: 80px;
}

.section_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;      
}


.section_card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 1.5rem 1.5rem 1.5rem;
    background-color: var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
    transition: all 0.3s ease-in-out;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;     
}

.section_card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(39, 19, 6, 0.4);
}

.section_card::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 400%;
    aspect-ratio: 1;
    border-radius: 100%;
    background: var(--primary-color);
    z-index: -1;
    transition: 0.5s;
    transform: translate(-75%, -75%) scale(0.3);
}

.section_card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.section_card span {
    display: block;
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.section_card:hover span {
    color: var(--secondary-color);
}

.section_card img {
    margin-bottom: 0.75rem;
    max-width: 70px;
    border-radius: 100%;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

.section_card h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.section_card p {
    margin-bottom: 0.75rem;
    font-size: 13px;
    color: var(--text-light);
    transition: 0.3s;
    flex: 1;                   
}

.section_card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.section_card h6 {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    transition: 0.3s;
}

.section_card:hover :is(h4, h5) {
    color: var(--secondary-color);
}

.section_card:hover :is(p, h6) {
    color: var(--secondary-color);
}

.section_card:hover img {
    border-color: var(--secondary-color);
}
.section_card h4 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.section_card p {
    margin-bottom: 0.75rem;
    font-size: 13px;
    color: var(--text-light);
    transition: 0.3s;
}

.section_card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: 0.3s;
}

.section_card h6 {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-light);
    transition: 0.3s;
}

.section_card:hover:is(h4, h5) {
    color: var(--secondary-color);
}

.section_card:hover:is(p, h6) {
    color: var(--secondary-color);
}

.section_card:hover img {
    border-color: var(--secondary-color);
}

.section_card:hover:is(h4, h5) {
    color: var(--secondary-color);
}

.section_card:hover:is(p, h6) {
    color: var(--secondary-color);
}

.section_card:hover img {
    border-color: var(--secondary-color);
}

/* REVIEW SECTION */
.review-section {
    max-width: 1050px;
    margin: 0 auto;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #8b2635;
}

.review-top strong {
    display: block;
    font-size: 14px;
    color: #2a1a0e;
    margin-bottom: 4px;
}

.review-stars .fa {
    color: #e3b21e;
    font-size: 12px;
}

.review-card p {
    font-size: 13.5px;
    color: #555;
    line-height: 1.75;
    font-style: italic;
}


.submit-review {
    max-width: 1050px;
    margin: 0 auto;
}

.review-form-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #8B2635;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    border: 1.5px solid #ddd;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    font-family: Arial, sans-serif;
    color: #333;
    background: #fdfaf4;
    transition: border-color 0.3s;
    outline: none;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #8B2635;
    background: #fff;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
    width: fit-content;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 26px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    text-transform: none;
    letter-spacing: 0;
    font-weight: normal;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #e3b21e;
}

.submit-btn {
    align-self: center;
    background-color: #8B2635;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 36px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #6B7A52;
    transform: translateY(-2px);
}


footer {
    background-color: #6B7A52;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}