* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #34333B;
    overflow-y: scroll;
}

/* Header */
header {
    background: #34333B;
    padding: 10px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #E1D301;
    text-decoration: none;
}

.logo-img {
    width: 30px;
    height: 25px;
    border-radius: 5px;
    margin-bottom: 3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    transition: color 0.3s;
    padding: 8px 12px;
}

nav a:hover,
nav a.active {
    color: #E1D301;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(0px, 11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, -11px);
}

/* Hero Section */
.hero {
    background: #34333B;
    color: white;
    padding: 10px 30px 30px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}

.hero-logo img {
    width: 250px;
    height: 250px;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #FFFFFFF;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: rgba(225, 211, 1, 0.3);
}

/* Features Section */
.features-section {
    background: #34333B;
    padding: 60px 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)), 
            url("images/home_background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #E1D301;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature h3 {
    color: #E1D301;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
}

/* Phone Section */
.phone-section {
    padding: 40px 30px;
    background: #34333B;
    text-align: center;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.app-button {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s;
}

.app-button:hover {
    transform: scale(1.05);
}

.slideshow-container {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    height: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: auto;
    height: 800px;
    max-width: 100%;
    object-fit: contain;
    cursor: pointer;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(225, 211, 1, 0.8);
    color: #34333B;
    border: none;
    padding: 15px 20px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
    z-index: 10;
}

.prev-btn:hover, .next-btn:hover {
    background: #E1D301;
}

.prev-btn {
    left: -60px;
}

.next-btn {
    right: -60px;
}

/* Fullscreen Modal */
.fullscreen-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.fullscreen-modal.active {
    display: flex;
}

.fullscreen-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    cursor: zoom-out;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10001;
    transition: color 0.3s;
}

.fullscreen-close:hover {
    color: #E1D301;
}

/* News Section */
.news-section {
    padding: 30px 20px;
    background: #34333B;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
}

.news-section h2 {
    font-size: 36px;
    color: #E1D301;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(225, 211, 1, 0.2);
}

.news-item h3 {
    color: #E1D301;
    font-size: 22px;
    margin-bottom: 10px;
}

.news-item .date {
    color: #999;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
}

.coming-soon {
    text-align: center;
}

.coming-soon h1 {
    font-size: 64px;
    color: #E1D301;
    margin-bottom: 20px;
    font-weight: 700;
}

.coming-soon p {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 30px;
}

.coming-soon .back-home {
    display: inline-block;
    padding: 15px 40px;
    background: #E1D301;
    color: #34333B;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.coming-soon .back-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(225, 211, 1, 0.3);
}

/* Footer */
.footer {
    background: #34333B;
    color: #fff;
    padding: 30px 20px 30px;
    text-align: center;
    border-top: 1px solid rgba(225, 211, 1, 0.3);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-mailing {
    max-width: 600px;
    margin: 0 auto 30px;
}

.footer-mailing h3 {
    color: #e1d301;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-mailing p {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-mailing form {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-mailing input {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #555;
    background: #000000;
    color: #ffffff;
    font-size: 14px;
}

.footer-mailing button {
    padding: 12px 30px;
    background: #5993f4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.footer-mailing button:hover {
    background: #4782e3;
}

.footer-mailing .status {
    color: #4ade80;
    margin-top: 10px;
    font-size: 14px;
    display: none;
}

.footer-apps {
    display: flex;
    justify-content: center;
    gap: 0px;
    margin-bottom: 40px;
}

.footer-bottom {
    font-size: 14px;
    color: #999;
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 22px;
    }

    .slideshow-container {
        max-width: 450px;
        height: 900px;
    }
    
    .slide img {
        height: 900px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prev-btn {
        left: -40px;
    }

    .next-btn {
        right: -40px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: #34333B;
        flex-direction: column;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 0;
    }

    nav ul.active {
        right: 0;
    }

    nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        font-size: 18px;
    }

    .hero h2 {
        font-size: 18px;
    }

    header {
        padding: 15px 20px;
    }

    .hero {
        padding: 60px 20px 30px;
    }

    .phone-section,
    .news-section,
    .features-section {
        padding: 30px 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-mailing form {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-mailing input {
        max-width: 100%;
    }
    
    .footer-mailing button {
        width: auto;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }

    .app-button img {
        height: 45px;
    }

    .slideshow-container {
        max-width: 400px;
        margin: 0 auto;
        position: relative;
        height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
		margin-bottom: 80px;
    }
    
    .slide img {
        width: auto;
        height: 600px;
        max-width: 100%;
        object-fit: contain;
        cursor: pointer;
    }

    /* Buttons positioned below image */
    .prev-btn, .next-btn {
        top: calc(100% + 15px);
        transform: none;
        padding: 12px 15px;
        font-size: 18px;
    }

    .prev-btn {
        left: 50%;
        margin-left: -90px;
    }

    .next-btn {
        right: 50%;
        margin-right: -90px;
        left: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 16px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-img {
        width: 35px;
        height: 30px;
    }

    .slideshow-container {
        max-width: 300px;
        height: 550px;
        margin-bottom: 60px;
    }
    
    .slide img {
        height: 500px;
    }

    .app-buttons {
        margin-bottom: 10px;
    }

    .prev-btn, .next-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .prev-btn {
        margin-left: -70px;
    }

    .next-btn {
        margin-right: -70px;
    }
}