@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import'./reset.css';
body {
    font-family: 'Montserrat', sans-serif;
}

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

.header {
    box-shadow: 0px 5px 10px 2px rgba(34, 60, 80, 0.2) inset;
}

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

.Logo {
    font-size: 24px;
    font-weight: 500;
}

.Logo span {
    color: #f5333d;
}

.links {
    display: flex;
    gap: 25px;
}

.link {
    font-weight: 500;
    color: black;
    transition: all 0.4s ease;
}

.link:hover {
    color: #f5333d;
    text-decoration: underline;
}

.hero {
    margin-top: 40px;
}

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

.car {
    width: 50%;
    border-radius: 20px;
    transition: 0.3s;
}

.car:hover {
    border: 3px solid #f5333d; 
    box-shadow: 0 0 100px #f5333d; 
}

.hero_title {
    font-size: 50px;
}


.line {
    margin: 50px auto;      
    border: none;          
    border-top: 5px solid; 
    width: 80%;
    color: #f5333d; 
    border-radius: 100px;         
}

.card {
    border-radius: 20px;
    width: 30%;
    box-shadow: 0px 5px 10px 2px rgb(34, 60, 80, 0.2);

}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0 ;
}

.card_title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;

}

.card_desc {
    display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}

.rasers {
    display: flex;
    justify-content: center;  
    gap: 20px;                
    flex-wrap: wrap;          
    margin-top: 30px;
}

.carborder:hover {
    border: 3px solid #f5333d;
    box-shadow: 0 0 100px #f5333d;
}


.center_text {
    margin: 30px;
    margin-left: 600px;
    font-size: 34px;
}

.card_text {
    margin: 30px;
}


.contact {
    margin-top: 40px;
    padding: 20px;
    background: #000000;         
    color: white;
}

.form_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact_form {
    display: flex;
    flex-direction: column;      
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;              
}

.contact_form label {
    font-weight: bold;
}

.contact_form input,
.contact_form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid white;
    font-size: 14px;
}

.btn {
    padding: 12px;
    background: #f5333d;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #5a0309; 
}


.comments {
    display: flex;
    flex-direction: column; 
    align-items: flex-start; 
}

.comments_title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    color: white;
}

.comments_list {
    display: flex;
    flex-direction: column;  
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.comment_card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0px 5px 10px rgba(34, 60, 80, 0.2);
}

.comment_author {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: bold;
    color: #f5333d;
}

.comment_text {
    margin: 0;
    font-size: 14px;
    color: #333;
}


.footer {
    background-color: #111;       
    color: white;                  
    text-align: center;            
    padding: 20px;                
            

.footer_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;                   
}

.insta_logo {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.insta_logo:hover {
    transform: scale(1.2);         
}

}


.comments_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.comment_card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 12px;
    background: #f9f9f9;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.avatar {
  width: 50px;         
  height: 50px;       
  object-fit: cover;   
  border-radius: 50%;  
  margin-right: 15px;  
}


.comment_content {
    flex: 1;
}

.comment_author {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment_text {
    margin-bottom: 10px;
}

.comment_actions {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #555;
    cursor: pointer;
}

.comment_actions .like:hover {
    color: #f5333d;
}

.comment_actions .stars {
    color: gold;
}
