@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary: #5e3e30;
    --secondary: #c4a1a1;
    --light: #fef4f1;
    --accent: #ffe4da;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--primary);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg,
            var(--accent) 0%,
            var(--light) 100%);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: var(--accent); */
    background-color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
a {
  text-decoration: none;
  color: inherit;
}
.logo {
    width: 40px;
    height: 40px;
    margin-right: 0.4rem;
}
.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-title {
    color: var(--primary);
    font-size: 1.8rem;
    font-family: "Fredoka", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 1px;
}

.continue-booking {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.continue-booking:hover {
    background-color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.h2:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 70px;
    height: 6px;
    background-color: var(--secondary);
    margin-top: 8px;
    margin-left: 4px;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary);
    font-size: 1rem;
}

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

/* Hero Section */
.hero {
    padding: 3rem 0;
}

.hero p {
    font-size: 1.1rem;
}
.praragraph-container {
    margin: 0 auto;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    max-width: 70vw;
}
.praragraph-container p{
    font-weight: 500;
}
/* Team Section */
.team {
    padding: 3rem 0;
    background-color: white;
}

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

.team-member {
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-img {
    height: 200px;
    background-color: var(--accent);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-img img {
    width: 50%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.member-info {
    padding: 1.2rem;
}

.member-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.member-info p.position {
    color: #b48686;
    font-weight: 600;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: var(--primary);
    transition: color 0.3s ease;
    font-size: 1rem;
}

.social-links a:hover {
    color: var(--secondary);
}

/* Values Section */
.values {
    padding: 3rem 0;
    background: linear-gradient(135deg,
            var(--accent) 0%,
            var(--light) 100%);
}

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

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.value-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.value-card p {
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--primary);
    color: white;
}

.cta h2 {
    color: white;
}

.cta h2:after {
    background-color: white;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
    margin-top: 1rem;
}

.cta .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}
.fab{
    font-size: 1.3rem;
    margin: 3px;
    transition: color 0.3s ease;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}