* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    line-height: 1.4;
    font-weight: 300;
    font-family: 'Times New Roman', Times, serif;
    scroll-behavior: smooth;
}

a {
    color: black;
    text-decoration: none;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo li {
    list-style: none;
    padding: 25px 50px;
    font-size: 16px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 1px;
}

.logo li a:hover {
    color: #fdb958;
}

.logo img {
    height: 90px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

nav {
    box-shadow: 6px 6px 6px rgba(1, 1, 1, 0.05);
    position: sticky;
    top: 0;
    background: #fff;
    padding: 9px;
    z-index: 50;
}

.bar-icon {
    font-size: 20px;
}

.bar-icon i {
    font-size: 20px;
    margin-left: 270px;
}

.bar-icon i:hover {
    color: #ffc066;
}

.iconn i {
    font-size: 20px;
}

.iconn i:hover {
    color: #ffc066;
}


/* hero section */

.hero {
    display: flex;
    gap: 100px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
    margin-bottom: 10px;
}

.hero-img img {
    height: 490px;
    margin-left: 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tag {
    background-color: #149539;
    padding: 5px 10px;
    color: white;
    align-self: flex-start;
}

.hero-content h1 {
    font-size: 65px;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-content p {
    font-size: 20px;
}

button {
    padding: 10px 15px;
    border: none;
    transition: 0.2s ease-in-out;
}

button:hover {
    opacity: 0.8;
    transition: 0.2s ease-in-out;
}

.explore-btn {
    background: #ffc066;
    align-self: flex-start;
    color: black;
    font-size: 17px;
}

.hero-content p {
    font-size: 19px;
}

.features {
    margin-top: 100px;
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    transition: 0.2s ease-in-out;
    max-width: 350px;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
}

.feature:hover {
    transition: 0.2s ease-in-out;
    box-shadow: 5px 5px 15px rgba(1, 1, 1, 0.1);
}

.feature img {
    height: 60px;
    width: auto;
}

.feature-content {
    text-align: left;
}

.feature-content h3 {
    margin: 0;
    font-size: 18px;
}

.feature-content p {
    margin: 5px 0 0;
    font-size: 17px;
    color: #666;
    font-family: sans-serif;
}

.divider {
    border: 1px solid #ccc;
    margin: 20px 0;
    font-size: 19px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/*menu  section */
.menu {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
    align-items: center;
}

.menu .tag {
    align-self: center;
    font-size: 26px;
}

.grid {
    display: grid;
    gap: 7px;
    grid-template-areas: "I1 I1 I2 I3"
        "I1 I1 I2 I7"
        "I4 I5 I6 I7";
}

.grid img {
    height: 250px;
}

.grid-img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.grid-img:hover {
    transform: scale(1.05);
    transition: 0.2s ease-in-out;
}

.item1 {
    grid-area: I1;
}

.item2 {
    grid-area: I2;
}

.item3 {
    grid-area: I3;
}

.item4 {
    grid-area: I4;
}

.item5 {
    grid-area: I5;
}

.item6 {
    grid-area: I6;
}

.item7 {
    grid-area: I7;
}

/* footer section */

footer {
    background: linear-gradient(135deg, #fff0db, #ffe4bc);
    padding: 60px 0;
    margin-top: 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
}

/* LOGO */
.footer-logo img {
    width: 170px;
    margin-bottom: 15px;
}

/* HEADINGS */
.links h3,
.news-letter h3 {
    margin-bottom: 18px;
    font-size: 21px;
    font-weight: 600;
    color: #333;
    position: relative;
}

.links h3::after,
.news-letter h3::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #ffb347;
    display: block;
    margin-top: 6px;
    border-radius: 10px;
}

/* LINKS */
.links ul {
    list-style: none;
    padding: 0;
}

.links ul li {
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
    color: #555;
    transition: 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.links ul li:hover {
    color: #ff6600;
    transform: translateX(6px);
}

/* NEWSLETTER */
.news-letter input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
    margin-bottom: 15px;
}

.news-letter input:focus {
    border-color: #ffb347;
    box-shadow: 0 0 8px rgba(255, 179, 71, 0.4);
}

/* ICONS */
.icon-container {
    display: flex;
    gap: 18px;
    font-size: 24px;
    margin-top: 15px;
}

.icon {
    cursor: pointer;
    background: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.icon:hover {
    background: #ffb347;
    color: #fff;
    transform: translateY(-4px);
}