@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --color-primary: #5D4037;
    --color-accent: #D84315;
    --color-fresh: #388E3C;
    --color-bg: #FAFAFA;
    --color-text: #212121;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../img/tyay2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.7), rgba(93, 64, 55, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5em;
    font-weight: 300;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.brand-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    color: var(--color-accent);
    margin-bottom: 10px;
    display: inline-block;
    border-bottom: 2px solid var(--color-accent);
}

/* Custom Buttons */
.btn-custom-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-primary-custom {
    background-color: var(--color-accent);
    border: 2px solid var(--color-accent);
    color: white;
    padding: 12px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background-color: #BF360C;
    border-color: #BF360C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    padding: 12px 30px;
    font-size: 1.2em;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background-color: white;
    border-color: white;
    color: var(--color-primary);
    transform: translateY(-2px);
}

/* Icons within buttons */
.btn i {
    margin-right: 8px;
}

/* Utility */
.img-center-circle {
    display: block;
    margin: 0 auto 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    width: 150px;
    height: 150px;
    object-fit: cover;
}