/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Nav Bar Style */
/**********************************/
.header {
    background: linear-gradient(135deg, #c8a882 0%, #b8976e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo_container {
    width: 100px;
    height: 100px;
    border: 3px solid #333;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    transition: transform 0.3s ease;
}

.logo_container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo_container:hover {
    transform: scale(1.05);
}

.nav_menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav_menu a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav_menu a:hover {
    color: #555;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.contact_box_container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact_box_T, .contact_box_E {
    min-width: 150px;
    max-width: 300px;
    text-align: center;
    font-weight: 300;
    transition: all 0.3s ease;
}

.contact_box_E img{
    max-height: 30px;
}

.contact_box_T img{
    max-height: 30px;
}

/* Footer Style */
/**********************************/
.line_hr{
    padding-left: 15%;
    padding-right: 15%;
}
.footer_logo{
    padding-right: 2%;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}
.footer_logo img{
    background: white;
    border: 2px solid #333;
    width: 100px;
    height: 100px;
    display: flex;
}

footer{
    background: linear-gradient(135deg, #c8a882 0%, #b8976e 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
}

/**********************************/
/**********************************/

/* Main Content */
.main_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero_section {
    text-align: left;
    margin-bottom: 3rem;
}

.hero_title {
    color: #c8a882;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero_tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero_subtitle {
    font-size: 1.2rem;
    font-style: italic;
    color: #34495e;
    border-bottom: 2px solid #c8a882;
    padding-bottom: 1rem;
    display: inline-block;
    margin-bottom: 3rem;
}
/**********************************/
.btn {
    background: linear-gradient(135deg, #c8a882 0%, #b8976e 100%);
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #b8a48c 0%, #bd9f7a 100%);
}

.card {
    background: white;
    border-radius: 6px;
    padding: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    margin: 1rem 0;
}


/**********************************/
.page_end{
    padding-left: 30%;
    padding-right: 30%;
}
.call_to_action{
    color:#4472C4
}

/**********************************/
/**********************************/

/*#TODO Mobile Navigation */
/* Hamburger Menu Button */
.mobile_menu_toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    position: relative;
}

.hamburger_lines {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger_line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation for hamburger to X */
.mobile_menu_toggle.active .hamburger_line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile_menu_toggle.active .hamburger_line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile_menu_toggle.active .hamburger_line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Tablet View (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header_container {
        padding: 0 1.5rem;
    }
    
    .logo_container {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }
    
    .nav_menu {
        gap: 1.5rem;
    }
    
    .nav_menu a {
        font-size: 16px;
        padding: 0.4rem 0.8rem;
    }
    
    .contact_box_container {
        gap: 0.4rem;
    }
    
    .contact_box_T, .contact_box_E {
        min-width: 120px;
        max-width: 200px;
        font-size: 0.9rem;
    }
    /**********************************/
    .main_content {
        padding: 2.5rem 1.5rem;
    }
    /**********************************/
    .hero_title {
        font-size: 2.2rem;
    }
    
    .hero_tagline {
        font-size: 1.3rem;
    }
    
    .hero_subtitle {
        font-size: 1.1rem;
    }
    
}

/* Mobile View (up to 768px) */
@media (max-width: 768px) {
    .header_container {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .logo_container {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .nav_menu {
        order: 3;
        width: 100%;
        flex-direction: column;
        gap: 1;
        background: rgba(255,255,255,0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
        display: none;
    }
    
    .nav_menu.active {
        display: flex;
    }
    
    .nav_menu a {
        padding: 1rem;
        border-bottom: 1px solid #eee;
        text-align: center;
        font-size: 16px;
    }
    
    .nav_menu a:last-child {
        border-bottom: none;
    }
    
    .mobile_menu_toggle {
        display: block;
        order: 2;
    }
    
    .contact_box_container {
        order: 1;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .contact_box_T, .contact_box_E {
        padding: 0.5rem;
        min-width: auto;
        max-width: none;
        font-size: 0.8rem;
        flex: 1;
    }
    
    .contact_box_E img, .contact_box_T img {
        max-height: 20px;
    }
    /**********************************/
    .main_content {
        padding: 2rem 1rem;
    }
    /**********************************/
    .hero_title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero_tagline {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .hero_subtitle {
        font-size: 1rem;
        text-align: center;
        display: block;
        text-align: center;
    }
    
    .hero_section {
        text-align: center;
        margin-bottom: 2rem;
    }
    /**********************************/
    .line_hr {
        padding-left: 5%;
        padding-right: 5%;
    }
    
    .footer_logo {
        padding-right: 1%;
        padding-top: 10px;
        padding-bottom: 15px;
        justify-content: center;
    }
    
    .footer_logo img {
        width: 60px;
        height: 60px;
    }
    
    footer {
        padding: 0.8rem 0;
        font-size: 0.9rem;
    }
}

/* Small Mobile View (up to 480px) */
@media (max-width: 480px) {
    .header_container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .logo_container {
        width: 50px;
        height: 50px;
        font-size: 16px;
        align-self: center;
    }
    
    .contact_box_container {
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .contact_box_T, .contact_box_E {
        width: 100%;
        font-size: 0.7rem;
        padding: 0.4rem;
    }
    
    .contact_box_E img, .contact_box_T img {
        max-height: 18px;
    }
    /**********************************/
    .main_content {
        padding: 1.5rem 0.5rem;
    }
    /**********************************/
    .hero_title {
        font-size: 1.5rem;
    }
    
    .hero_tagline {
        font-size: 1rem;
    }
    
    .hero_subtitle {
        font-size: 0.9rem;
    }

    /**********************************/
    .footer_logo {
        padding-top: 20px;
    }
    
    .footer_logo img {
        width: 50px;
        height: 50px;
    }
    
    .call_to_action {
        font-size: 0.9rem;
    }
}


/**********************************/
/**********************************/
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_section {
    animation: fadeInUp 0.8s ease;
}

.content_section {
    animation: fadeInUp 0.8s ease 0.2s both;
}