@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

@font-face {
    font-family: "Eurostile";
    src: url("./font/Eurostile-BoldExtendedTwo.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
h1{
    font-family: 'Eurostile', Arial, sans-serif;
    background-color: rgb(255, 255, 255);
    margin: 0;
    cursor: pointer;
  
}
    
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #0b0e2a;
    font-family: 'Eurostile', Arial, sans-serif;
    font-weight: 400;      
    color: black;
}

header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5em 1em;
    background-color: #ffffff;
}

header {
    border-bottom: 1px solid #e5e5e5;
}

header a.icon {
    background: none;
    color: #000;
    padding: 8px;
    border-radius: 0;
}

#myLinks a:hover {
    background-color: rgba(255,255,255,0.05);
    color: #ffffff;
}

#myLinks {
  display: none;
  background-color: #333;
  flex-direction: column;
}

#myLinks.show {
  display: flex;
}


#myLinks a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}


#myLinks a:hover {
  background-color: #a9a7a7;
  color: rgb(238, 230, 230);
}

.main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.para1, .para2 {
    background-color: #ffffff;
    color: #111;
    border-radius: 0;        
    padding: 1.25rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #111;  
}
.brand {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 0.5rem; 
}

.divider {
    height: 1px;
    background-color: rgba(255,255,255,0.15);
    max-width: 1100px;
    margin: 2rem auto;
}


.brand img {
    height: clamp(2.5em, 4vw, 3rem);
    width: auto;
}

.brand h1 {
    margin: 0;
}

    
.sern-lhc {
    width: 100%;
    height: 100%;
    object-fit: cover;         
    object-position: center;
    display: block;
    
}
.lhc{
    width: 100%;
    height: 42vh;        
    min-height: 260px;
    max-height: 480px;
    overflow: hidden;
    background-color: #000;
}
.section-title {
    max-width: 1100px;
    margin: 2.5rem auto 1rem;
    padding: 0 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}
.content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.card {
    background: #ffffff;
    color: #111;
    border-radius: 8px;
    padding: 1.1rem 1.2rem;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #2f5258;
    display: flex;
    flex-direction: column;
}

.card .meta {
    color: #555;
    font-size: 0.9rem;
    margin: 0.25rem 0 0.5rem;
}

.card p {
    flex-grow: 1;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
}

.card-footer .price {
    font-weight: 700;
    color: #537075;
}

.card-footer .card-link {
    background: none;
    color: #537075;
    text-decoration: none;
    border: 1px solid #537075;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.card-footer .card-link:hover {
    background: #7a9ba1;
    color: #0b0e2a;
}

.card-footer .card-link-full {
    background: #537075;
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s;
    width: 100%;
    text-align: center;
    display: block;
}

.card-footer .card-link-full:hover {
    background: #7a9ba1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(83, 112, 117, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.gallery-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

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

.gallery-item figcaption {
    padding: 0.75rem 0.9rem;
    color: #111;
    font-size: 0.95rem;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.2rem;
    justify-content: center;
}

.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    background: transparent;
    color: #888;
    border: 1px solid #555;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    text-decoration: none;
    box-shadow: none;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.cta:hover {
    color: #ddd;
    border-color: #ccc;
}

.cta.ghost {
    background: transparent;
    color: #666;
    border: 1px solid #444;
    box-shadow: none;
}

.cta.ghost:hover {
    background: transparent;
    color: #999;
    border-color: #666;
    box-shadow: none;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 2rem auto 1rem;
    max-width: 1100px;
    color: #ffffff;
}

.digital-clock {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.1em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    header {
        padding: 0.4em 0.8em;
    }
    
    .brand img {
        height: 2.2rem;
    }
    
    .digital-clock {
        font-size: 1rem;
    }
    
    .lhc {
        height: 30vh;
        min-height: 200px;
        max-height: 300px;
    }
    
    .content {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1rem;
        margin: 1.5rem auto 0.8rem;
    }
    
    .main.two-col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .cta-row {
        gap: 0.5rem;
    }
    
    .cta {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .card-footer .card-link-full {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .card-footer .card-link {
        padding: 0.3rem 0.55rem;
        font-size: 0.75rem;
    }
    
    .card {
        font-size: 0.9rem;
    }
    
    .card h3 {
        font-size: 1rem;
    }
    
    .card .meta {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .main, .two-col {
        grid-template-columns: 1fr; 
    }
    .para1, .para2{
      gap: 0.5rem;

    }
    .cards-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    .lhc{
        height: 30vh;
        min-height: 180px;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: #00d9ff;
}

.gallery-item img {
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 217, 255, 0.2);
}

/* Footer */
footer {
    background-color: #ffffff;
    color: #333;
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid #e5e5e5;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}


