@import url("./fonts.css");

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.container{
    max-width: 1140px;
    width: 100%;
    margin: auto;
}

/* Kamron */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f6fa;
}


.container {
    width: 1200px;
    margin: auto;
}


.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #ff6b3d;
}


.menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.menu li {
    cursor: pointer;
    color: #555;
    transition: 0.3s;
}

.menu li:hover {
    color: #ff6b3d;
}

.menu .active {
    color: #ff6b3d;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon {
    font-size: 18px;
    cursor: pointer;
}

.btn {
    background: #ff6b3d;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #e85a2f;
}


.hero {
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.left {
    width: 50%;
}

.left h1 {
    font-size: 50px;
    color: #2d2d2d;
    line-height: 1.2;
}

.left h1 span {
    color: #ff6b3d;
}


.desc {
    margin: 20px 0;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 500px;
}


.buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.explore {
    background: #ff6b3d;
    border: none;
    padding: 12px 25px;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.explore:hover {
    background: #e85a2f;
}

.buttons a {
    color: #333;
    text-decoration: underline;
}


.right img {
    width: 500px;
    max-width: 100%;
}


/* Kamron */