@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Doto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Vinyl&display=swap');


body, html {
    height: 100%;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    overflow-x: scroll; 
}


footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
    position: relative;
    z-index: 1; 
}


.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    padding: 10px;
    /*
    position: relative;
    */
    z-index: 2;
    width: 100%;
    height: 110px;
    position: fixed; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

.navbar-logo {
    max-height: 90px;
    width: auto;
}

.navbar-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0 60px; 
}

.navbar-menu li {
    margin-left: 1.5rem;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Montserrat', Arial, sans-serif;
}

.navbar-menu a:hover {
    text-decoration: underline;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 2px 0;
    transition: 0.4s;
}

.section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background-color: #fff;
    padding: 40px 20px; 
    z-index: 1; 
    position: relative;
}


.text-container {
    text-align: center;
    max-width: 800px; 
    padding: 20px;
}


.main-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}


.sub-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 768px) {
    .section-container {
        min-height: 80vh;
        padding: 60px 20px;
    }

    .main-heading {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }

    .sub-text {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}


.contact-info {
    flex: 1;
    max-width: 500px;
    margin-right: 20px;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.address-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.address-info div {
    font-size: 1rem;
    color: #333;
    margin-right: 20px;
    flex: 1 1 100%;
}

.address-info div p {
    margin-bottom: 15px;
}

.address-info div a {
    color: #333;
    text-decoration: none;
}

.address-info div a:hover {
    color: #000;
}

@media (max-width: 768px) {
    .address-info {
        flex-direction: column;
    }
    
    .address-info div {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


.contact-form {
    flex: 1;
    max-width: 600px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form input {
    flex: 1;
}

textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    padding: 15px 30px;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #333;
}


@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }

    .contact-info {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}



@media (max-width: 768px) {
    .main-heading {
        font-size: 2.5rem;
    }
    
    .sub-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-text {
        font-size: 0.9rem;
    }
}


@media (max-width: 768px) {
    .navbar{
        justify-content: space-between;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px 0;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        margin: 10px 0;
        text-align: center;
        border-bottom: 1px solid white; 
    }


    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 600px) {
    .navbar-menu {
        flex-direction: column;
        align-items: center; 
    }
    .navbar-menu li {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    .center-box {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5rem;
    }
    footer {
        padding: 0.5rem;
        font-size: 0.875rem; 
    }
}


.carousel {
    position: relative;
    height: calc(100vh - 110px);
    width: 100%;
    overflow: hidden;
}

.carousel-margin {
    margin-top: 110px;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.bmi-calculator {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    flex-wrap: wrap;
    background-color: grey;
}

.bmi-left, .bmi-right {
    flex: 1;
    margin: 20px;
}

.bmi-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.bmi-description {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bmi-form {
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.bmi-form input,
.bmi-form select {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background-color: #555;
    color: white;
}

.bmi-form select {
    appearance: none;
    cursor: pointer;
}

.calculate-btn {
    width: 100%;
    padding: 15px;
    background-color: white;
    color: black;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.calculate-btn:hover {
    background-color: #ccc;
}


.bmi-right h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.bmi-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    margin-top: 20px;
}

.bmi-table th,
.bmi-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #555;
}

.bmi-table th {
    background-color: #444;
}

.bmi-table tr:hover {
    background-color: #555;
}

.bmi-result {
    margin-top: 20px;
    font-size: 1.5rem;
    color: #fff;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    display: none;
}

@media (max-width: 768px) {
    .bmi-calculator {
        flex-direction: column;
        align-items: center;
    }

    .bmi-left, .bmi-right {
        width: 100%;
        margin: 0 0 20px;
    }

    .form-row {
        flex-direction: column;
    }
}

.message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    background-image: linear-gradient(45deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%, #e0e0e0 100%);
    background-size: 40px 40px;
    animation: moveBackground 10s linear infinite;
}

@keyframes moveBackground {
    0% {background-position: 0 0;}
    100% {background-position: 40px 40px;}
}

.message-box {
    text-align: center;
    background-color: #333; 
    color: #ffd700; 
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.3), 0px 0px 0px 10px rgba(255, 215, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.message-box::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(255,215,0,0));
    filter: blur(20px);
    opacity: 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.message-box h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    color: #333;
    background-color: #ffd700; 
    border: none;
    border-radius: 25px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.home-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: scale(0);
    transition: transform 0.5s;
}

.home-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0,0,0,0.2);
}

.home-button:hover::after {
    transform: scale(1);
}

@media (max-width: 600px) {
    .message-box {
        padding: 30px;
        border-radius: 10px;
    }

    .message-box h1 {
        font-size: 1.5rem;
    }

    .home-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

.footer-section {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background-color: #000; 
    gap: 40px;
}

.footer-left, .footer-right {
    flex: 1;
    margin: 0 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.footer-logo {
    width: 150px;
    margin-bottom: 20px;
    align-items: center;
}

.footer-left h3 {
    margin-top: 20px;
    font-size: 1.5rem;
    color: white;
}

.footer-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ccc; 
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffd700; 
}

.footer-right h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.working-hours {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.working-hours li {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #ccc; 
}

.more-link {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.more-link:hover {
    background-color: #555; 
}

@media (max-width: 768px) {
    .footer-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-left, .footer-right {
        margin: 20px 0;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .social-icons a {
        margin: 0 10px;
    }
}



/* checkbox */
.checkbox-container {
    text-align: center;
    margin-top: 20px;
}

.checkbox-label {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}


.checkbox-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}


.checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.checkbox-item input {
    margin-right: 5px;
}

.contact-form .checkbox-item input[type="radio"] {
    margin: 0;
}

.checkbox-item label {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

/* yazı animasyon */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.animated-text {
    font-family: "Rubik Vinyl", system-ui;
    /*
    font-size: clamp(5rem, 7vw, 5rem);
    */
    font-size: 7rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

@media (max-width: 768px) {
    .animated-text {
        font-size: clamp(3rem, 6vw, 4rem);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}


/* services */

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #333;
}

.service-item {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    background-color: #fff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    overflow: hidden;
    color: white;
    position: relative;
    height: 40vh;
}

/*
.service-item:hover {
    transform: translateY(-10px);
}
*/

.service-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 2;
}

.service-item h2, 
.service-item p, 
.service-item .send-message {
    position: relative;
    z-index: 3; 
    color: white; 
}

.service-item h2 {
    font-size: 24px;
    margin: 10px 0;
}

.service-item p {
    font-size: 16px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    height: 20vh; 
}

.send-message {
    background-color: gold;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
}

.send-message:hover {
    background-color: #b38e2e;
}

@media (max-width: 768px) {
    .service-item {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .service-item {
        flex: 1 1 100%;
    }
}

/* gallery section */

.gallery-section {
    padding: 20px;
    background-color: #000;
    height: 75vh;
    overflow: hidden;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: 100%;
}

.little-gallery, .big-gallery {
    width: calc(50% - 10px);
    height: calc(50% - 5px);
}

.little-gallery {
    display: flex;
    gap: 10px;
}

.little-gallery .gallery-item {
    width: calc(50% - 5px);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.big-gallery .gallery-item {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .gallery-section {
        height: auto;
    }
    .little-gallery, .big-gallery {
        width: 100%;
        height: auto;
    }
    .little-gallery {
        flex-direction: column;
    }
    .little-gallery .gallery-item {
        width: 100%;
        height: auto;
    }
    .big-gallery .gallery-item {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
        height: auto;
    }
}

/* harita */
.map-section {
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* sosyal medya */

.social-follow {
    background: linear-gradient(to right, #808080, #D4AF37);
    padding: 40px 20px;
}

.social-follow-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-follow-content i,
.social-follow-content h2,
.social-follow-content .follow-button {
    color: white;
}

.social-follow-content i {
    font-size: 2.5rem;
}

.social-follow-content h2 {
    font-size: 1.5rem;
    margin: 0;
}

.social-follow-content .follow-button {
    background-color: transparent;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.social-follow-content .follow-button:hover {
    background-color: white;
    color: #D4AF37;
}

@media (max-width: 768px) {
    .social-follow-content {
        flex-direction: column;
        text-align: center;
    }
}

/* navbar dropdown */
.navbar-menu .dropdown {
    position: relative;
}

.navbar-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: black;
    list-style: none;
    padding: 0;
    margin: 0;
    top: 100%;
    left: 0;
    width: 200px;
    z-index: 1000;
}

.navbar-menu .dropdown-menu li {
    border-bottom: 1px solid white;
}

.navbar-menu .dropdown-menu li:last-child {
    border-bottom: none;
}

.navbar-menu .dropdown-menu a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
}

.navbar-menu .dropdown:hover .dropdown-menu {
    display: block;
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: black;
        padding: 20px 0;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu .dropdown-menu {
        position: static;
        background-color: transparent;
        padding: 0;
    }

    .navbar-menu .dropdown-menu a {
        padding: 10px 20px;
    }

    .navbar-menu .dropdown:hover .dropdown-menu {
        display: none;
    }

    .navbar-menu .dropdown.active .dropdown-menu {
        display: block;
    }    
}


/* reviews */
.reviews {
    text-align: center;
    padding: 40px;
    background: linear-gradient(to right, #2c2c2c, #d4af37); 
    color: white; 
    overflow: hidden; 
}

.reviews h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    padding-left: 10vw;
    font-size: 3rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
}

.review-container {
    position: relative; 
    width: 100%;
    height: 200px; 
}

.review {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none; 
    text-align: left;
    padding-left: 10vw;
}

.review p {
    margin-bottom: 10px;
}

.italic-review {
    font-style: italic;
    font-size: 1.2rem;
}

.review-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review.active {
    opacity: 1;
    display: block; 
}

.review-buttons {
    display: flex;
    margin-top: 20px;
    text-align: left;
    padding-left: 10vw;
    justify-content: left;
}

button.prev, button.next {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 20px;
    border-radius: 5px;
}

button.prev:hover, button.next:hover {
    background-color: #555;
}


@media (max-width: 992px) {
    .reviews-container {
        height: 250px;
    }

    .review-buttons {
        padding-top: 30px;
    }

}

/* quick contact */
.quick-contact-form {
    background-color: #2C2C2C;
    padding: 40px 0;
}

.quick-contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quick-contact-title {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.quick-contact-text {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}


.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #D4AF37;
    background-color: #3C3C3C;
    color: #fff;
    border-radius: 4px;
}

.quick-contact-form input::placeholder,
.quick-contact-form textarea::placeholder {
    color: #999;
}

.quick-form-row {
    display: flex;
    gap: 15px;
}

.quick-form-row input,
.quick-form-row textarea {
    flex: 1;
}

.quick-checkbox-container {
    margin-bottom: 20px;
}

.quick-checkbox-label {
    color: #D4AF37;
    display: block;
    margin-bottom: 10px;
}

.quick-checkbox-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 10px;
}

.quick-checkbox-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.quick-checkbox-item input[type="radio"] {
    margin: 0;
    width: auto;
}

.quick-checkbox-item label {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.quick-submit-btn {
    background-color: #D4AF37;
    color: #2C2C2C;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 4px;
    display: block;
    width: 100%;
}

.quick-submit-btn:hover {
    background-color: #B8860B;
}

@media (max-width: 768px) {
    .quick-form-row {
        flex-direction: column;
    }
}

/* video*/
.video-section {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

/* blog */
.latest-blog-posts {
    padding: 60px 0;
    background-color: #f8f8f8;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.section-description {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
}

.blog-posts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-post {
    flex-basis: calc(33.333% - 20px);
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-title {
    font-size: 1.25rem;
    margin: 15px;
    color: #333;
}

.blog-post-excerpt {
    font-size: 0.9rem;
    margin: 0 15px 15px;
    color: #666;
}

.blog-post-link {
    display: inline-block;
    margin: 0 15px 15px;
    margin-top: auto;
    padding: 8px 15px;
    text-align: center;
    background-color: #D4AF37;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.blog-post-link:hover {
    background-color: #B8860B;
}

@media (max-width: 992px) {
    .blog-post {
        flex-basis: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .blog-post {
        flex-basis: 100%;
    }
}

/* blogs */
.fitness-tips {
    text-align: center;
    margin: 0;
    padding: 10vh;
    background-color: gray;
    margin-top: 110px;
}

.fitness-tips h1 {
    color: gold;
}

.fitness-tips p {
    color: white;
    font-size: 18px;
    margin: 20px 0;
}

.fitness-tips a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid gold;
    padding: 10px 20px;
    border-radius: 5px;
}

.gradient-line {
    width: 100%;
    height: 3px; 
    background: linear-gradient(to right, gold, grey);
    margin-top: 30px; 
}

/* cookie */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1000;
    display: none; 
    font-size: 12px;
    font-weight: 500;
}

.accept-button {
    background-color: #D4AF37;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    margin-left: 10px;
    border-radius: 5px;
}

/* Mobile Navigation Bar */
.mobile-navigation {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #daa520; 
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.mobile-navigation .nav-item {
    text-align: center;
    flex: 1;
    text-decoration: none;
    color: #2f2f2f; 
    font-size: 12px;
    padding: 10px 0;
}

.mobile-navigation .nav-item:hover {
    background-color: #b8860b; 
    color: white;
}

.mobile-navigation .nav-icon {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .mobile-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    footer {
        margin-bottom: 60px; 
    }
}

