/* styles.css */
body {
    margin: 0;
    font-family: 'Courier New', monospace;
    background: #cccccc;
    color: #000000;
    min-height: 100vh;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #333333;
    background-image: url('image/1.jpg'); /* Replace with your fixed photo URL */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #ffffff;
    z-index: 1;
}

.hero-subtitle{
    color: #ff0000;
}

.hero-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 4.5rem;
    margin: 0;
    line-height: 1.2;
}

.hero-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-top: 20px;
}

/* Burger Menu */
#burger-toggle {
    position: absolute;
    appearance: none;
    opacity: 0;
}

#burger-toggle:checked ~ .menu {
    opacity: 1;
    visibility: visible;
}

#burger-toggle:checked ~ .burger-menu .line-1 {
    transform: translateY(10px) rotate(45deg);
}

#burger-toggle:checked ~ .burger-menu .line-2 {
    opacity: 0;
}

#burger-toggle:checked ~ .burger-menu .line-3 {
    transform: translateY(-10px) rotate(-45deg);
}

.burger-menu {
    position: fixed;
    top: 5vh;
    left: 5vw;
    z-index: 100;
    width: 50px;
    height: 50px;
    cursor: pointer;
    padding: 10px;
    background: rgba(51, 51, 51, 0.7); /* More transparent */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.burger-menu .line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #333333;
    opacity: 0;
    overflow-x: hidden;
    visibility: hidden;
    z-index: 99;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-inner {
    text-align: center;
}

.menu-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style-type: none;
}

@media screen and (max-width: 750px) {
    .menu-nav { flex-direction: column; }
}

.menu-nav-item { flex: 1; }

.menu-nav-link {
    position: relative;
    display: inline-flex;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: none;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.menu-nav-link:hover {
    color: #ff0000;
}

.menu-nav-link span { 
    overflow: hidden; 
    display: block;
}

.menu .gallery { 
    margin-top: 60px; 
    text-align: center; 
}

.menu .title { 
    font-size: 24px; 
    color: #ffffff; 
    overflow: hidden; 
}

.menu .title p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.menu .images { 
    margin-top: 36px; 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center;
}

.menu .image-link {
    width: 15vw;
    margin: 0 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.menu .image-link:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 750px) {
    .menu .image-link { 
        width: 40vw; 
        margin: 0 12px 12px 0; 
    }
}

.menu .image-link .image {
    position: relative;
}

.menu .image-link .image::before {
    position: absolute;
    content: attr(data-label);
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu .image-link:hover .image::before {
    opacity: 1;
}

.menu .images img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 80px 5%;
    background: #cccccc;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.about-text {
}

.section-title {
    font-family: 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: #000000;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.about-text p span {
    font-weight: bold;
    color: #ff0000; /* To break monotony */
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 750px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image img {
        height: 300px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background: #333333;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-container .section-title {
    color: #ffffff;
}

.gallery-container .divider-line {
    background: #ff0000;
    margin: 0 auto 20px;
}

.gallery-intro {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    width: 100%; 
    padding-top: 75%; 
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8); 
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

@media (max-width: 750px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* Services Section */
.services-section {
    padding: 80px 5%;
    background: #cccccc;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-container .section-title {
    color: #000000;
}

.services-container .divider-line {
    background: #000000;
    margin: 0 auto 20px;
}

.services-intro {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 40px;
}

.services-intro span {
    color: #ff0000; /* Break monotony */
    font-weight: bold;
}

.services-subtitle {
    font-family: 'Arial Black', sans-serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-item {
    background: #333333;
    color: #ffffff;
    padding: 20px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 750px) {
    .services-list {
        grid-template-columns: 1fr;
    }
}

/* Vision Section */
.vision-section {
    padding: 80px 5%;
    background: #333333;
    position: relative;
    overflow: hidden;
}

.vision-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.vision-text {
}

.vision-text .section-title {
    color: #ffffff;
}

.vision-text .divider-line {
    background: #ff0000;
}

.vision-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.vision-text p span {
    color: #ff0000;
}

.vision-image {
    position: relative;
    overflow: hidden;
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-image:hover img {
    transform: scale(1.1);
}

@media (max-width: 750px) {
    .vision-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vision-image img {
        height: 300px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 5%;
    background: #cccccc;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-container .section-title {
    color: #000000;
}

.contact-container .divider-line {
    background: #000000;
    margin: 0 auto 20px;
}

.contact-intro {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 20px;
}

.contact-call {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-slogan {
    font-family: 'Arial Black', sans-serif;
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.contact-text {
    color: #000000;
    text-decoration: none;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.copy-btn {
    background: #333333;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #ff0000;
}

@media (max-width: 750px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #333333;
    color: #ffffff;
    padding: 40px 5%;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.footer-contact a, .footer-contact span {
    color: #ffffff;
    text-decoration: none;
}

.footer p {
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-fade-in.visible {
    opacity: 1;
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-up-delay {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.animate-slide-up-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.animate-fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}