  :root {
            --watmar-primary: #333840;
            --watmar-accent1: #4CAF50;
            --watmar-accent2: #F57C00;
            --watmar-neutral: #E0E0E0;
        }
    

        body {
            background-color: white;
            color: var(--watmar-primary);
            font-family: sans-serif;
            line-height: 1.6;
            margin: 0;
            overflow-x: hidden;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            display: flex;
            flex-direction: row;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            background-color: white;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            padding: 12px 0;
        }

        .logo-nav{
            width: 50%;
            display: flex;
            margin: auto;
        }

        .logo-nav img
        {
            width: 50%;
            vertical-align: middle;
        }

        .logo-nav a
        {
            margin: 0;
            padding: 0;
            vertical-align: middle;
        }

        .nav-links
        {
            width: 40%;
            display: flex;
            justify-content: end;
            margin: auto;
            font-size: 120%;
            white-space: nowrap;
        }
        
        .container {
            width: 100%;
            margin: 0 auto;
            padding: 0 16px;
        }
        
        .flex {
            display: flex;
        }
        
        .justify-between {
            justify-content: space-between;
        }
        
        .items-center {
            align-items: center;
        }
        
        .logo {
            height: 40px;
        }
        

        
        .nav-link {
            margin: 0 16px;
            color: var(--watmar-primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--watmar-accent2);
        }
        
        .mobile-menu-btn {
            display: block;
            color: var(--watmar-primary);
            background: none;
            border: none;
            font-size: 24px;
        }
        
        /* Hero Section */
        .hero-section {
            padding-top: 64px;
            padding-left: 3%;
            height: 80vh;
            min-height: 600px;
            display: flex;
            flex-direction: row;
            align-items: center;
            background: var(--watmar-neutral)
        }
        
        .hero-left
        {
            width: 50%;
            margin-right: 12%;
        }

        .hero-content {
            width: 100%;
            margin-bottom: 40px;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-top: 8px;
            line-height: 1.25;
        }
        
        .hero-text {
            margin-top: 24px;
            font-size: 1.25rem;
            max-width: 42rem;
        }
        
        .hero-buttons {
            margin-top: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        
        .btn {
            padding: 12px 32px;
            font-weight: 700;
            border-radius: 9999px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }
        
        .btn-primary {
            background-color: var(--watmar-accent1);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #388e3c;
        }
        
        .btn-secondary {
            background-color: var(--watmar-accent2);
            color: white;
        }
        
        .btn-secondary:hover {
            background-color: #e65100;
        }
        
        /* Slider */
           .slider-container {
            position: relative;
            width: 50%;
            height: 30em;
            aspect-ratio: 1/1;
            margin: auto;
            overflow: hidden;

        }
        
        .slider {
            display: flex;
            align-items: center;
            width: 400%;
            height: 100%;
            animation: slide 16s infinite; /* 4 images * 4s each */
        }
        
        .slide {
            width: 25%; /* Each slide takes 25% of container */
            height: 100%;

        }
        
        .slide img {
            height: 100%;
            object-fit: cover;
        }
        
        /* Sliding animation */
        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            20% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-25%);
            }
            45% {
                transform: translateX(-25%);
            }
            50% {
                transform: translateX(-50%);
            }
            70% {
                transform: translateX(-50%);
            }
            75% {
                transform: translateX(-75%);
            }
            95% {
                transform: translateX(-75%);
            }
            100% {
                transform: translateX(0);
            }
        }
        /* Sections */
        .section-padding {
            padding: 64px 0;
        }
        
        .section-title {
            text-align: center;
            max-width: 48rem;
            margin: 0 auto 64px;
        }
        
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .divider {
            height: 4px;
            width: 96px;
            margin: 16px auto 0;
        }
        
        .divider-accent1 {
            background-color: var(--watmar-accent1);
        }
        
        .divider-accent2 {
            background-color: var(--watmar-accent2);
        }
        
        /* What we offer Section */
        #features
        {
            background-color: white;
            padding: 0%;
        }

        #features .container
        {
            align-self: center;
            width: 100%;
        }

        .features-container {
            display: flex;
            flex-direction: row;
            width: 90%;
            align-items: center;
            margin: auto;
            padding-bottom: 3%;
        }
        
        .features-image {
            width: 90%;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
             transition: transform 0.3s ease;
             
        }

        .features-image:hover
        {
            transform: translateY(-5px) scale(101%);
        }
        
        .features-content {
            width: 100%;
            margin-left: 5%;
            padding-left: 10%;
        }
        
        .features-text {
            font-size: 120%;
            margin-bottom: 24px;
        }
        
        .highlight-box {
            padding: 15px;
            padding-left: 15px;
            background-color: #f9fafb;
            border-left: 4px solid var(--watmar-accent2);
            border-radius: 0 8px 8px 0;
            margin-bottom: 24px;
            font-size: 120%;
        }

        .highlight-box p
        {
            margin: 0;
        }
        
        .features-list {
            margin-top: 24px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-left: 0;  
        }
        
        .feature-item {
            display: flex;
            align-items: center;
        }
        
        .feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 9999px;
            background-color: var(--watmar-accent1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
        }
        
        /* Why Choose Us Section */
        .benefits-section {
            background-color: var(--watmar-neutral);
            width: 100%;
            display: flex;
            padding: 1%;
            justify-content: center;
        }
        .benefits-section .container
        {
            padding: 0;
            margin: 0;
        }
        .benefits {
           display: flex;
           justify-content: center;
           flex-direction: column;
            width: 72rem;
            max-width: 100%;
            gap: 30px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 2%;
        }

        .row
        {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: auto;
            width: 100%;
        }

        .a-benefits
        {
            text-decoration: none;
            color: var(--watmar-accent2);
        }

        .a-benefits:hover
        {
            color: var(--watmar-accent1);
        }
        
        .benefit-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            width: 28%;
            transition: box-shadow 0.3s ease;
            padding: 10px 20px 10px 20px;
        }
        
        .benefit-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        
        /* Colors Section */
        .colors-flex {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 32px;
            width: 72rem;
            max-width: 100%;
            margin: 0 auto;
            background-color: white;
        }
        
.colors h2
{
    margin-bottom: 0;
    padding-bottom: 0;
}

.colors p
{
    margin-top: 10px;
    padding: 0;
}

        .color-card {
            background-color: white;
            width: 20%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 2px 10px 15px 3px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .color-card:hover
        {
            transform: translateY(-5px);
        }
        
        .color-card img {
            width: 100%;
            height: 70%;
            object-fit: contain;
        }
        
        .color-card-content {
            padding: 24px;
            border-top: 1px solid var(--watmar-primary);
        }

        .color-card-content p, .color-card-content h3
        {
            margin: 0;
            padding: 0;
        }
        
        .color-title {
            font-size: 1.125rem;
            font-weight: 700;
            margin-bottom: 8px;
        }
        
        /* Pricing Section */
        #pricing
        {
            background-color: var(--watmar-neutral);
            margin-top: 3%;
            margin-bottom: 1%;
            padding-bottom: 2%;
        }

        .pricing-grid {
            display: flex;
            flex-direction: row;
            gap: 32px;
            width: 72rem;
            max-width: 100%;
            justify-content: space-between;
            margin: 0 auto;
        }
        
        .price-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            width: 23%;
             transition: transform 0.3s ease;
        }

        .price-card:hover
        {
            transform:  translateY(-5px);
        }
        
        .price-header {
            padding: 24px 0;
            text-align: center;
        }
        
        .price-header-primary {
            background-color: var(--watmar-primary);
        }
        
        .price-header-gradient1 {
            background: linear-gradient(to right, var(--watmar-primary), #4b5563);
        }
        
        .price-header-gradient2 {
            background: linear-gradient(to right, var(--watmar-accent1), #16a34a);
        }
        
        .price-header-gradient3 {
            background: linear-gradient(to right, var(--watmar-accent2), #ea580c);
        }
        
        .price-title {
            color: white;
            font-size: 1.25rem;
            font-weight: 700;
        }
        
        .price-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        #link-allegro
        {
             display: flex;
    align-items: center;
    justify-content: center;
        }
        
        .logo-allegro
        {
            width: 55px;
            margin-left: 5px;
            transform: translateY(1px);
        }

        .price-amount {
            text-align: center;
            margin-bottom: 16px;
            justify-self: center;
            align-self: center;
        }
        
        .price-number {
            font-size: 2.25rem;
            font-weight: 700;
        }
        
        .price-unit {
            color: #6b7280;
        }
        
        .price-features {
            margin-bottom: 24px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            flex-grow: 1;
            padding-left: 0;
            margin-left: 0;
        }
        
        .price-feature {
            display: flex;
            align-items: center;
        }
        
        .price-feature i {
            color: var(--watmar-accent1);
            margin-right: 8px;
        }
        
        .price-btn {
            width: 100%;
            padding: 12px 0;
            border-radius: 8px;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
            transition: background-color 0.3s ease;
            margin-top: auto;
        }
        
        .price-btn-primary {
            background-color: var(--watmar-primary);
            color: white;
        }
        
        .price-btn-primary:hover {
            background-color: #1f2937;
        }
        
        .price-btn-accent1 {
            background-color: var(--watmar-accent1);
            color: white;
        }
        
        .price-btn-accent1:hover {
            background-color: #16a34a;
        }
        
        .price-btn-accent2 {
            background-color: var(--watmar-accent2);
            color: white;
        }
        
        .price-btn-accent2:hover {
            background-color: #ea580c;
        }
        
        
        /*Individual section*/
        .individual-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.individual-content
{
    font-size: 120%;
    padding-left: 5%;
    padding-right: 5%;
}

.individual-image {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.individual-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.caption {
  margin-top: 10px;
  font-style: italic;
  color: #555;
}
        
       /* Specs Section */
#specs .container {
    width: 100%;
    background-color: var(--watmar-neutral);
}

#specs
{
    background-color: var(--watmar-neutral);
}



.specs-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2em;
    width: 100%;
    justify-content: space-between;
}

.specs-container {
    flex: 1;
    max-width: 50%;
}

.spec-image {
    flex: 1;
    max-width: 39%;
    height: auto;
    align-self: center;
}

        .specs-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            font-size: 110%;
        }
        
        .spec-item {
            display: flex;
            align-items: flex-start;
            background-color: #f9fafb;
            padding: 16px;
            border-radius: 8px;
        }
        
        .spec-item i {
            color: var(--watmar-accent1);
            margin-top: 4px;
            margin-right: 12px;
        }
        
/* Contact Section */
#contact {
    padding: 2rem 0;
    background-color: var(--watmar-primary);
    color: white;
}

.contact-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
}

.contact-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .contact-header h2 {
        font-size: 2.25rem;
    }
}

.contact-header p {
    font-size: 1.125rem;
    color: #d1d5db;
}

.contact-header .divider {
    height: 0.25rem;
    width: 6rem;
    background-color: var(--watmar-accent2);
    margin: 1rem auto 0 auto;
}

.contact-grid {
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background-color: #1f2937;
    border-radius: 0.75rem;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--watmar-accent1);
    font-size: 130%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-left: 0;
    margin-left: 0;
    font-size: 120%;
}

.contact-item i {
    color: var(--watmar-accent2);
    margin-right: 1rem;
    margin-left: 0;
    padding-left: 0;
}

.contact-item span,
.contact-item a {
    color: whitesmoke;
}

.contact-item a:hover {
    color: var(--watmar-accent2);
    transition: color 0.3s ease;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group textarea
{
    width: 90%;
    padding: 0.75rem;
    background-color: #374151;
    border-radius: 0.5rem;
    border: 1px solid #4b5563;
    max-width: 90%;
    color: white;
}

.form-group select {
    width: calc(97.4% - 1px); /* Changed from 90% to match other fields */
    -webkit-appearance: none; 
    -moz-appearance: none; 
    appearance: none; 
    padding: 0.75rem;
    background-color: #374151;
    border-radius: 0.5rem;
    border: 1px solid #4b5563;
    color: white;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--watmar-accent2);
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--watmar-accent2);
    color: white;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #ea580c;
    transition: background-color 0.3s ease;
}

/* Footer */
footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 1em 0rem 0.5em 0;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-brand {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        margin-bottom: 0;
    }
}

.footer-brand .logo {
    height: 25px;
}

.footer-brand p {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    margin-bottom: 0.1rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: #9ca3af;
}

.footer-social a:hover {
    color: white;
    transition: color 0.3s ease;
}

.footer-social i {
    font-size: 1.25rem;
}

.footer-copyright {
    border-top: 1px solid #1f2937;
    margin-top: 1rem;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.875rem;
}
      

/* Responsive Media Queries */
/* Large screens (PCs) - adjust for very wide displays */
@media (min-width: 1600px) {

    .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .benefits, 
    .colors-flex,
    .pricing-grid {
        width: 90rem;
 
    }

    .row
    {
        width: 100%;
    }
    
    .hero-section {
        padding-left: 10%;
    }
    
    .features-container {
        width: 90rem;
        margin: auto;
    }


}

/*Medium screens (tablets and small laptops) */
@media (max-width: 1599px) {
   
    .hero-section {
        height: auto;
        background-color: var(--watmar-neutral);
        padding-top: 100px;
        padding-bottom: 50px;
    }

    
    .hero-left, 
    .slider-container {
        width: 80%;
        margin: 0 auto;
    }
    
    .hero-left {
        margin-bottom: 40px;
    }

    .features-content {
        margin-left: 5%;
        padding-left: 5%;
        margin-top: 30px;
    }
    
    .features-image {
        width: 100%;
    }
    .feature-item {
  display: flex;
  align-items: center; 
  gap: 12px; 
}

.feature-icon {
  flex-shrink: 0; 
  width: 22px;
  height: 22px;
  border-radius: 50%; 
  background-color: var(--watmar-accent1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible; 
}

    .benefit-card {
        width: 28%;
        margin-bottom: 20px;
    }
    
    .colors-flex,
    .pricing-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .color-card,
    .price-card {
        width: 22%;
        margin-bottom: 30px;
    }
    
    #specs
    {
        background-color: white;
    }

    .specs-container,
    .spec-image {
        max-width: 50%;
    }

    .specs-container li
    {
        background-color: #ececec;
    }
    
    .spec-image {
        margin-top: 0px;
    }
}

/* Small screens (phones) */

@media (max-width: 900px) {
    html, body
    {
        overflow-x: hidden;
    }
    nav {
        flex-direction: column;
        padding: 15px 0;
        width: 100%;
            position: fixed;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    z-index: 999;
    }

      nav.hide-on-scroll {
    transform: translateY(-100%);
  }
    
    .logo-nav
    {
        height: 50%;
    }
    .nav-links {
        width: 100%;
        justify-content: center;
    }
    
    .logo-nav img {
        width: 70%;
        margin: 0 auto;
        display: block;
    }
    
    .nav-links {
        margin-top: 15px;
        font-size: 100%;
        flex-wrap: wrap;
    }
    
    .nav-link {
        margin: 5px 10px;
    }
    
    .hero-section
    {
        flex-direction: column;
        align-items: center;
  justify-content: center;
        
    }

    .hero-left
    {
        width: 80%;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 80%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .benefit-card,
    .color-card,
    .price-card {
        width: 100%;
    }
    
    .row {
        flex-direction: column;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: 250px;
        text-align: center;
    }

    .features-content
    {
        margin: 0;
    }
    
    .features-container
    {
        display: flex;
        flex-direction: column-reverse;
        width: 80%;
        margin: auto;
    }

    .benefit-card
    {
        width: 80%;
        margin: 0 auto 2% auto;
    }

    .row, .benefits
    {
        margin: 0;
        padding: 0;
    }

    .benefits
    {
        margin-bottom: 10%;
    }

    .highlight-box,
    .features-text {
        font-size: 100%;
    }

    #colors .container, #pricing .container
    {
        padding: 0;
        margin: 0;
    }

    #colors .section-title
    {
        margin: auto auto 10% auto;
    }
    
    .color-card
    {
        width: 80%;
        margin: auto;
    }

    .colors-flex
    {
        width: 90%;
        margin: auto;
    }

    .pricing-grid
    {
        width: 90%;
        margin: auto;
    }

    .price-card
    {
        width: 100%;
        margin: auto;
    }

    #specs .container
    {
        margin: 0;
        padding: 0;
    }

    .specs-content
    {
        display: flex;
        flex-direction: column;
        margin: auto;
        width: 90%;
    }


    .spec-image
    {
        width: 100%;
    }
    

      .specs-container,
  .spec-image, .spec-item {
    max-width: 100%;
    width: 100%;
  }

    .specs-list
    {
        padding: 0;
        margin: 0;
    }

    .spec-item
    {
        width: 90%;
        margin: auto;
    }

    .contact-container
    {
        margin: 0;
        padding: 0;
    }

 .contact-card {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .contact-margin
  {
    margin: 7%;
  }

    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
}

/* Very small screens */ 
@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .features-list,
    .specs-list {
        font-size: 100%;
    }
    
    .price-number {
        font-size: 1.8rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
    }
}

