:root {
    --primary: #2A4B7C;
    --secondary: #FF914D;
    --accent: #5ECDC4;
    --light: #FFFFFF;
    --dark: #2D2D2D;
    --gray: #F9F9F9;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui;
}

body {
    background: var(--gray);
    color: var(--dark);
}

.main-header {
    background: var(--primary);
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 120px;
    width: 120px;
    object-fit: contain;
    order: 2;
}

.company-name {
    color: var(--light);
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    order: 1;
}

.nav-bar {
    background: var(--secondary);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.nav-button {
    color: var(--light);
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background: rgba(255,255,255,0.1);
cursor: pointer; 
  
}



.nav-button.active {
    background: var(--primary);
}


.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}



.gallery-item:hover .gallery-caption {
    bottom: 0;
    
}
.checkout-btn:hover {
    background: var(--secondary);
  
}
/* Form Styling */
.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--accent);
    border-radius: 4px;
}

.submit-btn {
    background: var(--primary);
    color: var(--light);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.about-content,
.resources-content,
.privacy-content {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.resource-item {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .company-name {
        font-size: 2.5rem;
    }
}
.cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--light);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.login-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--light);
    width: 90%;
    max-width: 400px;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

    
  .gallery-container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translate(0.5rem);
   
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-caption {
    background: rgba(0,0,0,0.7);
    color: var(--light);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.item-content {
    padding: 1.5rem;
    background: var(--light);
    display: none;
}

.item-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.item-content:hover {
  background: rgba(255,255,255,0.05); 
  transform: scale(1.02); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); 
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item, .item-content, .checkout-btn, .nav-button {
  transition: all 0.3s ease;
}



/* Basket Button */
.basket-button {
    position: relative;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 1rem;
}

.basket-count {
    position: absolute;
    top: -5px;
    right: 0;
    background: var(--accent);
    color: white;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Basket Modal */
.basket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.basket-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.basket-items {
    margin: 1rem 0;
}

.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.basket-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--primary);
}

.checkout-btn {
    background: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    transition: background 0.3s ease;
}



}
.main {
  background-color: #D4EAF5;
  height: 60%;
  border-radius: 30px;
  display: block;
  text-align: left; 
}

.main h1, .main h3 {
  display: inline-block;
  margin: 20px; 
  padding: 5px;
}
.head{
  background-color: #E8A87C;
  border-radius: 20px;
}
.main1{
  display: inline-block;
  border-radius: 10px;
background-color: #E8A87C;
margin: 0px;
height: 100px;
text-align: left;
}
.main1 h3{
  margin: 10px;
}
.head2{
  display: inline-block;
  border-radius: 0px;
background-color: #F1C6A0;
margin: 10px;
height: 300px;
text-align: left;
}
.head2 h3{
  margin: 10px;
}
.head1{
 background-color: #D4EAF5;
 text-align: center;
 border-radius: 15px;
}
#special{
  height: 620px;
  background-color: #F1C6A0;
  margin: 7px;
  
}
#special .main1{
  background-color: #E8A87C;
}
hr{
  height: 3px;
 background-color: black;
}
.content-section {
    display: none;
    padding: 2rem 0;
}

.content-section.active-section {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}