/* General Variables and Resets */
:root {
    --primary-color: #2c3e50; /* Deep Blue */
    --secondary-color: #ecf0f1; /* Soft White */
    --accent-color: #e74c3c; /* Warm Red */
    --text-color: #34495e; /* Steel Blue */
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  /* Header */
  header {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* Photo Transform Section */
  .photo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60vh;
  }
  
  .photo-wrapper {
    position: relative;
    width: 400px;
    height: 300px;
    overflow: hidden;
    border: 5px solid var(--accent-color);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 1s ease-in-out, box-shadow 1s ease-in-out;
  }
  
  .photo-wrapper:hover {
    transform: rotate(10deg) scale(1.1) translateX(15px) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  }
  
  .photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease, filter 1.2s ease;
  }
  
  .photo-wrapper:hover .photo {
    transform: scale(1.2) rotate(-5deg);
    filter: brightness(1.1) contrast(1.2) sepia(15%);
  }
  
  /* Footer */
  footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .photo-wrapper {
      width: 300px;
      height: 200px;
    }
  }
  