
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth; 
}

body {
    background-color: #121212;
    color: #ffffff;
}


.main-banner {
    height: 70vh;
    background-color: #1c1c1c;
    background-image: url('images/rina-logo.png');
    background-position: center 30%; 
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 40px; 
}


.btn {
    padding: 15px 30px;
    background-color: #f4c300; 
    color: #121212;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #cca300;
    color: #ffffff;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap; 
}

.whatsapp-btn {
    background-color: #25D366;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    border: none;
}

.instagram-btn:hover {
    opacity: 0.85;
    color: #ffffff;
}


.navbar-sticky {
    background-color: #000000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #f4c300;
    display: flex; 
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: center; 
}

.nav-container ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-container ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-container ul li a:hover {
    color: #f4c300;
}

.lang-switcher {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 10px;
}

.lang-switcher button {
    background-color: transparent;
    color: #fff;
    border: 1px solid #f4c300;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.lang-switcher button:hover, .lang-switcher button:active {
    background-color: #f4c300;
    color: #121212;
}


.about-section {
    padding: 60px 20px;
    background-color: #121212; 
    text-align: center;
}

.about-section h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #f4c300;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
}


.pricing-section {
    padding: 60px 20px;
    background-color: #1a1a1a; 
    text-align: center;
}

.pricing-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #f4c300;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #121212;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 30px 20px;
    min-width: 200px;
    flex: 1;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #f4c300;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #f4c300;
}

.price span {
    font-size: 1.2rem;
    color: #888;
}

.pricing-card.popular {
    border: 2px solid #f4c300;
    transform: scale(1.05);
    background-color: #000;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f4c300;
    color: #121212;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: bold;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-note {
    margin-top: 40px;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: bold;
    font-style: normal;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.gallery-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #121212;
}

.gallery-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #f4c300;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


.contact-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #f4c300;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-info, .map {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    margin: 15px 0;
    font-size: 1.1rem;
}

.working-hours {
    margin: 15px 0;
    line-height: 1.6;
    border-left: 3px solid #f4c300; 
    padding-left: 15px;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #000000;
    font-size: 0.9rem;
    color: #777;
}




@media (max-width: 768px) {
    .main-banner {
        height: 50vh;
        background-position: center 40%; 
    }
    .navbar-sticky {
        padding: 10px 0;
    }
    .nav-container ul {
        gap: 15px;
    }
    .nav-container ul li a {
        font-size: 0.95rem;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
    .contact-container {
        flex-direction: column;
    }
    .lang-switcher {
        position: relative;
        right: 0;
        justify-content: center;
        margin-top: 10px;
    }
}