/* Styling Display*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0f0f14;
    color: #ffffff;
    line-height: 1.6;
}

/*   HEADER*   */

header {
    background: #111827;
    padding: 40px 80;
}



header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00d4ff;

    text-shadow:
        1px 1px 0 #001f2a,
        2px 2px 0 #001f2a,
        3px 3px 0 #001f2a,
        4px 4px 0 #001f2a,
        5px 5px 0 #001f2a,
        6px 6px 12px rgba(0, 212, 255, 0.6);
}

header h1:hover {
    transform: scale(1.05);
    transition: 0.4s ease;
}

/* BOLD NAVIGATION */

nav {
    background-color: #000;
    border-top: 3px solid #00d4ff;
    border-bottom: 3px solid #00d4ff;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav li {
    flex: 1;
    text-align: center;
}

nav a {
    display: block;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
}

nav a:hover {
    background-color: #00d4ff;
    color: #000;
    transform: scale(1.05);
    transition:
        background-color 0.4s ease,
        color 0.4s ease,
        transform 0.3s ease;
}

/* MAIN LAYOUT */

main {
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
}

section {
    margin-bottom: 60px;
}

h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/*  HERO */

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero p {
    max-width: 700px;
    margin: 20px auto;
}

/* BUTTONS */

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: #00d4ff;
    color: #000;
}

.btn-primary:hover {
    background-color: #00aacc;
}

.btn-secondary {
    background-color: #333;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #555;

}

/* SERVICE GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card, .service-card {
    background: #1a1a22;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s ease;
}

.card:hover, .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

/*  TABLES */

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #14141c;
}

th, td {
    border: 1px solid #333;
    padding: 15px;
    text-align: left;
}

th {
    background-color: #00d4ff;
    color: #000;
}

tr:hover {
    background-color: #1a1a22;
}

/* GALLERY */

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 6px;
    transition: 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}


.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    transition: 0.3s ease;
}



/* FORM */

form {
    width: 100%;
}

fieldset {
    border: 2px solid #333;
    padding: 25px;
    border-radius: 8px;
}

label {
    display: block;
    margin-top: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 6px;
    border: 2px solid #444;
    background-color: #1a1a22;
    color: #fff;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 8px #00d4ff;
}

input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: #00d4ff;
}

.radio-group label {
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
}

input[type="submit"], input[type="reset"] {
    margin-top: 20px;
    padding: 12px;
    width: 48%;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

input[type="submit"] {
    background-color: #00d4ff;
    color: #000;
}

input[type="reset"] {
    background-color: #333;
    color: #fff;
}

/*  FOOTER */

footer {
    background-color: #111;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

/*  RESPONSIVE */

@media (max-width: 992px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        text-align: center;
    }

    .header-right {
        text-align: center;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {

    header h1 {
        font-size: 2.2rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        border-bottom: 1px solid #222;
        transform: none;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .grid-services {
        grid-template-columns: 1fr;
    }

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

    input[type="submit"],
    input[type="reset"] {
        width: 100%;
        margin: 10px 0;
    }
}




/*  HOME PAGE BACKGROUND */

.home-page {
    background: linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.7)
    ),
    url("HomeImage.png");
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}




/*  LIGHTBOX */

#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}



/* Responsive Video */

.video-section {
    text-align: center;
    margin: 60px 0;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.video-container iframe {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}




/* Header for phone, address, hours*/

.site-header {
    display: flex;
    align-items: center;
    justify-content: center;   /* centers entire group */
    gap: 200px;
    padding: 40px 0;
}

.header-right {
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.5;
}

.header-right p {
    margin: 3px 0;
}

.header-right a {
    color: #00d4ff;
    text-decoration: none;
}

.header-right a:hover {
    text-decoration: underline;
}


