body {
    background-color: #2A2A2A !important;
}

.custom-navbar {
    background-color: #E24038;
    padding: 0.75rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
}

.navbar-brand {
    padding: 0;
    margin-right: 2rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.main-logo {
    filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    width: 100%; /* Maximize width within container */
    height: auto;
    max-width: none; /* Remove width cap */
    max-height: 100vh; /* Optional: limit height */
}

.main-logo:hover {
    transform: scale(1.02);
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    opacity: 1;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Remove the underline animation since we're using borders now */
.navbar-nav .nav-link::after {
    display: none;
}

/* Add active state styling */
.navbar-nav .nav-link.active {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.brand-name {
    color: #E24038;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.brand-subtitle {
    color: white;
    font-size: 1.5rem;
    font-weight: normal;
}

/* Remove the image container background and padding */
.product-image-section {
    height: calc(100vh - 76px);
    background-color: #2A2A2A;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
}

.full-height-image {
    max-width: none;
    height: 100%;
    width: auto;
    object-fit: contain;
    margin: 0;
}

.content-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 76px);
    background-color: #2A2A2A;
    padding: 2rem;
    flex-grow: 1;
}

/* Remove all cookie-consent related styles */
.cookie-consent {
    display: none;
}

.btn-custom {
    background-color: #E24038;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    transition: opacity 0.3s;
    width: 100%;
    max-width: 300px;
}

.btn-custom:hover {
    opacity: 0.8;
    color: white;
}

/* Update responsive styles */
@media (max-width: 991px) {
    .navbar-toggler {
        background-color: white;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .brand-subtitle {
        font-size: 1.2rem;
    }

    .product-image-section {
        justify-content: center;
        height: auto;
        min-height: 50vh;
    }

    .full-height-image {
        width: 100%;
        height: auto;
    }

    .content-section {
        height: auto;
        min-height: 50vh;
        padding: 3rem 1rem;
    }

    .main-logo {
        max-width: 350px;
    }

    .navbar-nav .nav-link {
        margin: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .cookie-consent .btn-custom {
        margin-bottom: 0.5rem;
    }
} 