/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f4;
    color: #333;
    scroll-behavior: smooth;
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.dropbtn {
    background-color: #ff4c4c;
    color: rgb(205, 203, 203);
    padding: 10px 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #b9b6b6;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #ccc;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ff3333;
}

/* Parallax Section */
.parallax {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Keyframes for Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* Fade-in Effect */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.fade-in.visible {
    opacity: 1;
}

/* Landing Page Styles */
.landing {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.landing-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: zoomIn 2s forwards;
}

.landing-content h1 {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.landing-content p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ccc;
    line-height: 1.5;
}

.landing-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 15px 30px;
    border: none;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    color: white;
}

.primary-btn {
    background-color: #ff4c4c;
}

.secondary-btn {
    background-color: #555;
}

.primary-btn:hover {
    background-color: #ff3333;
}

.secondary-btn:hover {
    background-color: #333;
}

/* Services Section */
.services-section {
    padding: 50px;
    background-color: white;
    text-align: center;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.services-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ff4c4c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Services Grid Layout */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000; /* Dark background to make hover effects more pronounced */
    color: #fff;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
    border-radius: 10px;
}

.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(70%);
}

.service-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover h3 {
    opacity: 1;
    transform: translateY(0);
}

/* Portfolio Section */
.Portfolio-section {
    padding: 50px;
    background: #fafafa;
}

.Portfolio-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.Portfolio-section h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #ff4c4c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Portfolio Grid Layout */
.Portfolio {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.Portfolio img {
    width: 100%;
    object-fit: cover;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Portfolio img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Parallax Section */
.parallax {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(90%);
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 50px;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input, form textarea {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form button {
    padding: 10px;
    font-size: 18px;
    background-color: #ff4c4c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #ff3333;
}

/* Footer with Social Media Links */
footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
}

footer .social-media {
    margin-top: 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

footer .social-media a:hover {
    text-decoration: underline;
}

/* Fancy Title and Tagline Styles */
.fancy-title {
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: slideInFromLeft 2s forwards ease-out;
    animation-delay: 0.5s;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fancy-tagline {
    font-size: 20px;
    color: #ccc;
    opacity: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    animation: slideUp 2.5s forwards ease-out;
    animation-delay: 1s;
}

@keyframes slideUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.fancy-title:hover {
    color: #ff4c4c;
    text-shadow: 0 0 20px rgba(255, 76, 76, 0.8), 0 0 40px rgba(255, 76, 76, 0.6);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.fancy-tagline:hover {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

/* Media Queries */

/* For tablet screens */
@media (max-width: 768px) {
    .Portfolio, .services {
        grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
    }

    /* Adjust landing page title size */
    .landing-content h1 {
        font-size: 48px;
    }

    /* Adjust spacing for tablet */
    .landing-content p {
        font-size: 18px;
    }

    .landing-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

/* For mobile screens */
@media (max-width: 480px) {
    .Portfolio, .services {
        grid-template-columns: 1fr; /* One column for small screens */
    }

    /* Adjust landing page title size */
    .landing-content h1 {
        font-size: 36px;
    }

    /* Adjust spacing for mobile */
    .landing-content p {
        font-size: 16px;
    }

    .landing-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Make buttons bigger for touch devices */
    .btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .fancy-title {
        font-size: 36px;
    }
}
/* Lightbox Modal Styles */
.lightbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-content {
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

.lightbox.hidden {
    opacity: 0;
    visibility: hidden;
}

.lightbox:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
    }
    to {
        transform: scale(1);
    }
}

/* Click to Call Styling */
.click-to-call {
    margin: 10px 0;
    font-size: 16px;
    color: #555;
    text-align: center;
    opacity: 0.8;
}

.click-to-call span {
    font-size: 14px;
    margin-right: 5px;
    color: #777;
}

.click-to-call a {
    color: #ff4c4c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.click-to-call a:hover {
    color: #ff3333;
}
.powered-by {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
    text-align: center;
}

.powered-by a {
    color: #ff4c4c;
    text-decoration: none;
}

.powered-by a:hover {
    color: #ff3333;
}

/* About Header Styling */
.about-header {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-position: center;
    background-size: cover;
    position: relative;
}

.about-header-content {
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.about-header-content h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-header-content p {
    font-size: 20px;
    color: #ddd;
}


/* Hero Section */
.about-hero {
    height: 60vh;
    background: url('images/background.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-content {
    z-index: 1;
}

.about-hero .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
}

.about-hero .hero-content p {
    font-size: 18px;
    margin-top: 10px;
}
.about-photographer {
    padding: 60px 20px;
    background: #fdfdfd;
}

.bio-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.bio-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-text {
    flex: 1;
    max-width: 500px;
}

.bio-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.bio-text h4 {
    font-size: 18px;
    font-weight: normal;
    color: #777;
    margin-bottom: 20px;
}

.bio-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.bio-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4c4c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.bio-button:hover {
    background-color: #e03e3e;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.footer-container .social-icons {
    margin-top: 10px;
}

.footer-container .social-icons a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.footer-container .social-icons a img:hover {
    transform: scale(1.1);
}


