/* COLOR PALETTE */
:root {
    --primary: #F2D0A9;
    --secondary: #6D98BA;
    --accent1: #B48291;
    --accent2: #3A5A40;
}

/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Delius', sans-serif;
    background-color: var(--primary);
    color: #333;
}

h1, h2 {
    font-family: 'Lexend Deca', sans-serif;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 70px;
    background: white;
    border-bottom: 4px solid var(--accent2);
}

.logo img {
    height: 70px;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 600;
    color: var(--accent2);
    font-size: 1.05rem;
}

nav a:hover {
    color: var(--accent1);
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
    color: var(--accent2);
}

.hero .subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto;
    color: #333;
}

/* DISCOVER SECTION */
.discover {
    text-align: center;
    padding: 40px 20px;
}

.discover h2 {
    font-size: 2.2rem;
    color: var(--accent2);
}

/* SLIDESHOW BACKGROUNDS */
.slide-bg {
    background: var(--secondary);
    padding: 40px 0;
    border-radius: 12px;
}

/* DISCOVER ROW */
.discover-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.discover-row.reverse {
    flex-direction: row-reverse;
}

/* IMAGES */
.discover-image {
    width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 5px solid var(--accent2);
}

.discover-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

/* TEXT */
.desc {
    width: 330px;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* SLIDESHOW CORE */
.slideshow-container {
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
}

.slide {
    display: none;
}

.fade {
    animation: fadeEffect 1s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* DOTS */
.dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 14px;
    width: 14px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: 0.3s;
    cursor: pointer;
}

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


/* FAVORITE SECTION*/
.favorite_section{
    max-width: 1200px;
    margin: 60px auto;
    position: relative;
    border: 5px solid var(--secondary);
    border-radius: 12px;
    overflow: hidden;
}
.favorite-container {
    background: var(--accent2);
    padding: 40px 0;
}
.favorite-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}
.favorite-row p{
    color: var(--secondary);
}
.favorite-image {
    width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 5px solid var(--secondary);
}
.favorite-image:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
