:root {
    --color-black: #000;
    --color-white: #fff;
    --color-rose-gold: #E5B299;
    --color-emerald: #2A6041;
    --primary-color: var(--color-rose-gold);
    --secondary-color: var(--color-emerald);
    --background-color: var(--color-black);
    --text-color: var(--color-white);
    --accent-color: var(--color-emerald);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 60px 0 0;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 16px;
    font-family: serif;
     
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--primary-color);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.nav-logo-text {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 1rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    align-items: center;
}

.nav-icon {
    margin-left: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 2px 0;
    transition: 0.4s;
}

/* Updated Slider styles */
.slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -1px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    margin: 0;
    padding: 0;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}
/* Updated About section styles */
.about-section {
    display: flex;
    flex-direction: row;
    align-items: center;  /* Changed from flex-start to center */
    justify-content: center; /* Added to center the content */
    padding: 20px 0;  /* Added some padding top/bottom */
    margin: 0 auto;  /* Center the section itself */
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

.image-container {
    width: 100%;
    max-width: 300px;  /* Adjust based on your needs */
    margin: 0 auto;   /* Center the container */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding: 0 20px;  /* Add some padding on the sides */
}


.image-back {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.image-front {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);  /* Center horizontally */
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media only screen and (max-width: 768px) {
    .about-section {
        flex-direction: column;
        padding: 15px;
    }

    .image-container {
        width: 100%;
        max-width: 280px;  /* Slightly smaller on mobile */
        margin: 0 auto;
       margin-top: 10px;

    }

    .content {
        width: 100%;
        padding: 15px;
        text-align: center;  /* Center text on mobile */
        margin-top: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .about-section {
        padding: 10px;
    }

    .image-container {
        max-width: 250px;  /* Even smaller on very small screens */
    }

    .content {
        padding: 10px;
    }
}

/* For larger screens */
@media (min-width: 992px) {
    .about-section {
        justify-content: center;
        padding: 30px 0;
    }

    .image-container {
        max-width: 350px;  /* Larger on desktop */
    }
}

/* Footer styles */
.footer {
    background-color: var(--background-color);
    color: var(--text-color);
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--color-rose-gold);
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    color: var(--text-color);
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
    border-top: 0.5px solid var(--text-color);
}

/* Mobile App Footer */
.mobile-app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
    margin: 0;
    padding: 0;
}

.footer-menu {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.footer-menu-item {
    flex: 1;
    text-align: center;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-menu-item i {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-menu-item:hover {
    color: var(--primary-color);
}

/* Icon styles */
.nav-icon, .footer-menu-item i {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    vertical-align: middle;
}

/* Media Queries */
@media only screen and (max-width: 1200px) {
    .slider {
        max-width: 100%;
    }
}

@media only screen and (max-width: 1024px) {
    body {
        padding-bottom: 60px;
    }

    .footer {
        display: none;
    }

    .mobile-app-footer {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .slider {
        max-width: 100%;
        margin-top: -1px;
    }

    .about-section {
        flex-direction: column;
        padding: 0;
    }

    .image-container {
        width: 100%;
        margin: 0;
    }

    .content {
        width: 100%;
        padding: 0 15px;
    }
}

@media only screen and (max-width: 600px) {
    .slider {
        max-width: 100%;
        height: auto;
    }

    .slide img {
        border-radius: 0;
    }

    .fixed-text h2 {
        font-size: 6vw;
    }

    .fixed-text p {
        font-size: 3.5vw;
    }

    .footer-menu-item {
        font-size: 12px;
    }

    .footer-menu-item i {
        font-size: 18px;
    }
}

@media only screen and (max-width: 480px) {
    html {
        font-size: 12px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2.5rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-icons {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-logo,
    .footer-links {
        margin-bottom: 2rem;
        width: 100%;
    }
}


